We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can get access token. But, I do not how to put it into your service. How your service read access token?
The text was updated successfully, but these errors were encountered:
req.Header.Add("Accept", acceptHeader) req.Header.Add("Content-Type", "application/json") req.Header.Add("User-Agent", userAgent)
This is the request Header. It does not has 'Authorization'. I do not know how your service can make request without read 'token'
Sorry, something went wrong.
req.Header.Add("Accept", acceptHeader) req.Header.Add("Content-Type", "application/json") req.Header.Add("User-Agent", userAgent) This is the request Header. It does not has 'Authorization'. I do not know how your service can make request without read 'token'
should look like this req.Header.Add("Authorization", tok.TokenType+" "+tok.AccessToken)
No branches or pull requests
I can get access token. But, I do not how to put it into your service. How your service read access token?
The text was updated successfully, but these errors were encountered: