This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi everyone
I am currently building a report including data from all of your social media, Google Analytics and Google Search Console accounts. Since Power BI desktop has no built-in connector to get data from the Google Search Console, I have created an access token with postmen. I have been successful in creating a connection and getting the respecive data. However, the access token expires all the time. Preferably, I would like to write a function to automate the process of extracting the access token.
Therefore, I would like to know if any of you have ever been able to automate this process? I have found a helpful video online, but I could not perform the exact steps with my account:
Building a Power BI Admin View [Part 2]: Obtaining a Refreshable Access Token - YouTube
Any help would be highly appreciated.
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
1.As you mentioned, you could call the POST API in POSTMAN to get the access token
POST /common/oauth2/token HTTP/1.1
Host: login.windows.net
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
client_id={client id}&grant_type=password&resource=https%3A%2F%2Fanalysis.windows.net%2Fpowerbi%2Fapi&username={your power bi account}&password={your Power BI password}
2.With the above access_token, you can call the GenerateToken API.
For dynamically get the access token, please refer to:Call Power BI Rest API with Dynamic Access Token
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
1.As you mentioned, you could call the POST API in POSTMAN to get the access token
POST /common/oauth2/token HTTP/1.1
Host: login.windows.net
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
client_id={client id}&grant_type=password&resource=https%3A%2F%2Fanalysis.windows.net%2Fpowerbi%2Fapi&username={your power bi account}&password={your Power BI password}
2.With the above access_token, you can call the GenerateToken API.
For dynamically get the access token, please refer to:Call Power BI Rest API with Dynamic Access Token
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.