Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
rishabhshukla12
New Member

PBIWebAPP C# Refresh Token

Is there anyone who could tell me how to use the refresh token to get a new token. I am using PBIWebAPP dashboard code available on GitHub. I am a beginner in C# and don't know much about the how to use AuthenticationContext.AcquireTokenByRefreshToken.

 

The code I am using to generate the access token, which is getting expired in 1 hours. Can anyone help to put refresh token method so that I don't have to manually run this code again and again to get the new access token. Also, how can I extend the expiry time of the token?

 

 

protected void Page_Load(object sender, EventArgs e)
{
//Redirect uri must match the redirect_uri used when requesting Authorization code.
string redirectUri = String.Format("{0}Redirect", Properties.Settings.Default.RedirectUrl);
string authorityUri = Properties.Settings.Default.AADAuthorityUri;

// Get the auth code
string code = Request.Params.GetValues(0)[0];

// Get auth token from auth code
TokenCache TC = new TokenCache();

AuthenticationContext AC = new AuthenticationContext(authorityUri, TC);
ClientCredential cc = new ClientCredential
(Properties.Settings.Default.ClientID,
Properties.Settings.Default.ClientSecret);

 AuthenticationResult AR = AC.AcquireTokenByAuthorizationCode(code, new Uri(redirectUri), cc);

//Set Session "authResult" index string to the AuthenticationResult
Session[_Default.authResultString] = AR;

//Redirect back to Default.aspx
Response.Redirect("/Default.aspx");
}

 

Thanks.

2 REPLIES 2
Eric_Zhang
Microsoft Employee
Microsoft Employee

@rishabhshukla12

Regarding extend the liftertime of access token, it is an Azure AD question, to get a bettere response, I'd suggest your post in the dedicated AAD forum. Just for your reference, Configurable token lifetimes in Azure Active Directory (Public Preview).

 

As to how to get accesstoken with refresh token, you could reference below sample. It is for demo purpose, you don't have to get a new refreshtoken every time, the refreshtoken by default lives for 14 days, according to the above link.

Also, please note the the refreshtoken and AcquireTokenByRefreshToken seems no longer exposed in ADAL 3.0 or newer.  For further questions, please go to the AAD forum as well.

 

 

        public string GetAccessToken(string authorizationCode, string clientID, string clientSecret, string redirectUri)
        {
            //Redirect uri must match the redirect_uri used when requesting Authorization code.
            //Note: If you use a redirect back to Default, as in this sample, you need to add a forward slash
            //such as http://localhost:13526/

            // Get auth token from auth code       
            TokenCache TC = new TokenCache();

            //Values are hard-coded for sample purposes
            string authority = Properties.Settings.Default.AADAuthorityUri;
            AuthenticationContext AC = new AuthenticationContext(authority, TC);
            ClientCredential cc = new ClientCredential(clientID, clientSecret);

            //Set token from authentication result

            string refreshtoken = AC.AcquireTokenByAuthorizationCode(
                 authorizationCode,
                 new Uri(redirectUri), cc).RefreshToken;

           return AC.AcquireTokenByRefreshToken(refreshtoke, cc, "https://analysis.windows.net/powerbi/api").AccessToken; 
        }

 

What Microsoft.IdentityModel.Clients.ActiveDirectory version are you using?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.