Skip to content

Commit

Permalink
add RefreshToken to constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
abuzuhri committed Nov 25, 2021
1 parent 2b4c682 commit 829b4e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/FikaAmazonAPI/AmazonCredential.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public AmazonCredential()
{
CacheTokenData = new CacheTokenData();
}
public AmazonCredential(string AccessKey, string SecretKey, string RoleArn, string ClientId, string ClientSecret)
public AmazonCredential(string AccessKey, string SecretKey, string RoleArn, string ClientId, string ClientSecret,string RefreshToken)
{
this.AccessKey = AccessKey;
this.SecretKey = SecretKey;
Expand Down
6 changes: 3 additions & 3 deletions Source/FikaAmazonAPI/FikaAmazonAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<Product>CSharp Amazon Sp API</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>8.0</LangVersion>
<Version>1.0.16</Version>
<AssemblyVersion>1.0.1.16</AssemblyVersion>
<FileVersion>1.0.1.16</FileVersion>
<Version>1.0.17</Version>
<AssemblyVersion>1.0.1.17</AssemblyVersion>
<FileVersion>1.0.1.17</FileVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/abuzuhri/Amazon-SP-API-CSharp</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down

0 comments on commit 829b4e4

Please sign in to comment.