I want to implement oauth 1 in my website and I was just wondering if I have to change the request token once it was exchange to an access token?
Thanks in advance
|
I want to implement oauth 1 in my website and I was just wondering if I have to change the request token once it was exchange to an access token? Thanks in advance | |||
|
feedback
|
|
Request tokens are meant to be temporary and unique. After giving one out, you should forget all about it once either a) a few minutes have passed or b) it was used to request an access token. Allowing reuse of request tokens would open you up to http replay attacks. Section 6 of the OAuth 1.0 spec spells this out:
| |||||
feedback
|