Hi Regan, The better place to ask questions for a specific OAuth library would be the github page for it, in this case:
https://github.com/bittercoder/DevDefined.OAuth/issues This group is for more general OAuth discussions (though it's pretty inactive these days). As for your question - the session interface exposes a property called "AccessToken" - this can be set directly to an instance of the TokenBase class, so you don't need to go through the token exchange process every time. Cheers, Alex On Mon, May 12, 2014 at 5:42 PM, Regan Mowbray <[email protected]>wrote: > Hi All, > > Hopefully a quick one, how would I go about constructing the AccessToken > without making a request with a RequestToken to create it? > > Eg Currently AccessToken = > session.ExchangeRequestTokenForAccessToken(RequestToken, code); will set > the AccessToken. (Code is a verification code from the website with OAuth > as a method for testing) > > However I have OAuthToken and the OAuthToken Verifier saved in a MySQL > database for each user and need to load these to make the requests on > behalf of each user. > > Any examples out there? Have been stumped on this for the last day or so!! > > Thanks > Regan > > -- > You received this message because you are subscribed to the Google Groups > "OAuth" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "OAuth" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
