以前に OAuth を使用したことがありますが (Twitter と PHP を使用)、簡単でした。私はOAuthをEverNote APIサンプルhttps://github.com/evernote/evernote-sdk-csharpで動作させようとしています(彼らが言うように、「実際のアプリケーションはOAuthを使用してEvernoteで認証するため」)。私はこれらを見ました:
シンプルな C# Evernote API OAuth の例またはガイド?
https://github.com/sethhitch/csharp-oauth-sample
http://blog.stevienova.com/2008/04/19/oauth-getting-started-with-oauth-in-c-net/
しかし、私はまだこれを行う方法がわかりません...これは私のコードです:
// Real applications authenticate with Evernote using OAuth, but for the
// purpose of exploring the API, you can get a developer token that allows
// you to access your own Evernote account. To get a developer token, visit
// https://sandbox.evernote.com/api/DeveloperToken.action
String authToken = "myAuthCode";
if (authToken == "your developer token") {
Console.WriteLine("Please fill in your developer token");
Console.WriteLine("To get a developer token, visit https://sandbox.evernote.com/api/DeveloperToken.action");
return;
}
これに OAuth を追加して自分の を取得するにはどうすればよいauthToken
ですか?
ありがとうございました。