-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
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
Example wanted: Logging in to legacy API without OAuth 2.0 support and parsing token to oauth_token #491
Comments
Can you point to the API docs you're binding? |
Sure. I can also see that my link are broken. I've noticed that there's a Authenticate request with bearer token ( A use case: I've found the I'm not really sure if that's what you want, but I hope it does make some kind of sense. I'll be using httr2 in a R-package to wrap around a API, so in general, the documentation are *brilliant' already. It's just this use case where I need to fetch a token, store it in cache, and use it, including renewal once needed. I've already done the 1/ + 2/ to fetch the token with just the regular requests utils, but I've not managed to assign that as a httr2 token resource, to be used in 3/+4/+5/. |
I meant docs for the web API you were trying to wrap so I could better understand what it wants. But this more detailed explanation was helpful too, thanks 😄 Yeah, it does sound like |
I totally understand 😄! I'd like to mention that this is a R-lib for a API that I manage; so I've implemented a minimum level of Oauth 2.0 now, as it's clear that my R skills are not that deep (😆), compared to other languages, at least as this moment. With that said; Maybe other people are looking for a way, to handle this case, with a API they're not able to just change in a hour. Before updating the API i did manage to mock a "test_con_client" fnc. with
I know this is a edge-case, but if it's already possible to do a thing like this in the library, I guess it would be a good help for a beginner, with something in the docs, to play around with a API with a non-standard approch to authentication. By handling 1+2+3, or, illustrating how it's possible to parse in the token with code, like "assign this access token y to the httr2 lib, which expires_in x", or similar. As I've implemented the required specs in the API instead, you're more than welcome to close the issue, if you find it too niche or not that important. |
This comment has been removed, and moved into #498. |
Hi,
I've tried and found a way to login to a API where OAuth 2.0 are not used.
In the API, I login with username and password in the body, and I get a "token" and "expires" in return from my POST request.
I've found the oauth_token (edit: fixed link) and the oauth_token_cached. But I'm not really sure how I should cook the functions together, so I can set and reuse the token, and request a new one, once expired.
After looking through the issues and the documentation, I'm still not sure how to continue from here.
Are there a good example on how I can do this?
The text was updated successfully, but these errors were encountered: