This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Quick and dirty code strung together from an Evernote example which used ReactiveOAuth and the MSFT examples. | |
*/ | |
public sealed partial class Authenication : YourApp.Common.LayoutAwarePage | |
{ | |
private const string parametersQueryString = @"/oauth?oauth_consumer_key={0}&oauth_signature={1}&oauth_signature_method=PLAINTEXT&oauth_timestamp={2}&oauth_nonce={3}"; | |
private const string callBackUrl = "http://localhost/YouApp"; | |
private const string oAuthToken = "oauth_token"; | |
private string postResponse; |