Skip to content

Commit 95767d4

Browse files
Token issues (#1955)
While following this page and using it a lot while learning APIs, I had an issue where every request I was making to my client, it would reach out to get a new token. I assume this is not intended, and this was my fix for it. The local variable 'token' in the GetAuthenticationParameter function doesn't live outside of this and there for the obtained bearer token is never saved to the client object. I just forced the gettoken function to save to the Token variable that is in AuthenticatorBase. Please let me know if I am missing something as I would love to learn! I do figure that this does not take into account "what if the bearer token expires?" And to be honest I have no clue how this is handled! I plan on doing some checks if the request comes back with unauthorized, to get a new token, but if you have ideas or know of better ways to handle bearer tokens expiring please let me know! I am new to working with APIs.
1 parent df07026 commit 95767d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ public class TwitterAuthenticator : AuthenticatorBase {
4848
}
4949

5050
protected override async ValueTask<Parameter> GetAuthenticationParameter(string accessToken) {
51-
var token = string.IsNullOrEmpty(Token) ? await GetToken() : Token;
52-
return new HeaderParameter(KnownHeaders.Authorization, token);
51+
Token = string.IsNullOrEmpty(Token) ? await GetToken() : Token;
52+
return new HeaderParameter(KnownHeaders.Authorization, Token);
5353
}
5454
}
5555
```

0 commit comments

Comments
 (0)