Skip to content

Commit

Permalink
Fix refresh token
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdanm-bb committed Feb 28, 2024
1 parent 46e47a4 commit 2e90848
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Apps.GoogleSheets/Apps.GoogleSheets.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<Product>Google Sheets</Product>
<Description>Create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device</Description>
<Version>1.2.0</Version>
<Version>1.2.1</Version>
<AssemblyName>Apps.GoogleSheets</AssemblyName>
</PropertyGroup>
<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions Apps.GoogleSheets/Auth/OAuth2/OAuth2AuthorizeService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public string GetAuthorizationUrl(Dictionary<string, string> values)
{ "scope", ApplicationConstants.Scope },
{ "state", values["state"] },
{ "access_type", "offline" },
{ "prompt", "consent" },
{ "authorization_url", Urls.Auth},
{ "actual_redirect_uri", InvocationContext.UriInfo.AuthorizationCodeRedirectUri.ToString() },
};
Expand Down

0 comments on commit 2e90848

Please sign in to comment.