danielraexavier wrote:Hello - my company runs a web application. I work mostly as a front-end developer, but I've been charged with doing research to figure out how our clients who use PowerBI could pull data from our application into PowerBI. I envision a flow like this: In PowerBI Desktop, the user selects our application as a data source and proceeds through steps to authorize PowerBI to access our application's data in a read-only format. Our application already has some capabilities for OAuth built into it, so using an OAuth authorization mechanism could be an option. But I'm not really sure where to begin. Any help or advice on how to get started would be appreciated.
IMHO, there're below ways to connect your data to your client.
- You shall design Data feed APIs in your application and ask your client to call the API in Power BI Desktop via "get data"->"other"->"Web".
- Maybe you can use a web storage(Onedrive, Google Drive, dropbox etc) and expose the storage to your client. For many storage services, there're various APIs which make uploading and consuming files, say excels,csvs, in a programmable way possbile. Eg, you can access an excel in Onedrive for business via "Web" in option one.
- If you're using a cloud database, expose it to the users with a restricted read-only pression. And then connect to the database with indivisual connector in Power BI Desktop.
I think there're more ways and it all depends on your own scenario.