2012-02-17 10 views
5

próbuję uwierzytelnić Flickr API dla aplikacji demo chcę zrobić dla siebie. Następnie rozszerzę tę aplikację o nowe funkcje, dzięki którym poznam interfejs API Flick.Nieprawidłowy podpis żądań podpisania do API Flickr (symulacja w konsoli)

Jest to po prostu coś, z czym chcę się pobawić. Ale teraz mam problem z uzyskaniem tokena żądania.

Obserwuję dokumentacji Authentication Flickr tutaj: Flickr Authentication
a ja również znaleźć ten Mathlabscript: Flickr API with OAuth-based user authentication

więc na podstawie tych źródeł mam teraz następujących aplikacji konsoli:

class Program 
{ 
    private static string Secret = "2b2b2b2b2b2b2b2b2b"; 
    private static string ConsumerKey = "1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a"; 

    static void Main(string[] args) 
    { 
     Random rand = new Random(); 

     string nonce = rand.Next(9999999).ToString(); 
     string timestamp = ((int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds).ToString(); 

     Console.WriteLine("Nonce: " + nonce); 
     Console.WriteLine("TimeStamp: " + timestamp); 

     Console.WriteLine("ConsumerKey: " + ConsumerKey); 
     Console.WriteLine("AppSecret: " + Secret); 

     //request url 
     StringBuilder b = new StringBuilder(); 
     b.Append("http://www.flickr.com/services/oauth/request_token"); 
     b.Append("?"); 
     b.Append("oauth_nonce="); 
     b.Append(nonce); 
     b.Append("&oauth_timestamp="); 
     b.Append(timestamp); 
     b.Append("&oauth_consumer_key="); 
     b.Append(ConsumerKey); 
     b.Append("&oauth_callback=oob"); 
     b.Append("&oauth_signature_method=HMAC-SHA1"); 

     string requesturl = b.ToString(); 
     Console.WriteLine("RequestUrl: " + requesturl); 

     //base url 
     string basestring; 
     StringBuilder bs = new StringBuilder(); 

     bs.Append("GET&"); 
     bs.Append(UrlHelper.Encode("http://www.flickr.com/services/oauth/request_token")+"&"); 
     basestring = bs.ToString(); 

     StringBuilder p = new StringBuilder(); 
     p.Append("oauth_callback=oob"); 
     p.Append("&oauth_consumer_key="); 
     p.Append(ConsumerKey); 
     p.Append("oauth_nonce="); 
     p.Append(nonce); 
     p.Append("&oauth_signature_method=HMAC-SHA1"); 
     p.Append("&oauth_timestamp="); 
     p.Append(timestamp); 

     string paramers = UrlHelper.Encode(p.ToString()); 

     basestring += paramers; 
     Console.WriteLine("Basestring: " + basestring); 



     System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); 

     string key = Secret + "&"; 
     Console.WriteLine("Key: " + key); 

     byte[] keyByte = encoding.GetBytes(key); 

     //--create message to encrypt 
     byte[] messageBytes = encoding.GetBytes(basestring); 

     //--encrypt message using hmac-sha1 with the provided key 
     HMACSHA1 hmacsha1 = new HMACSHA1(keyByte); 
     byte[] hashmessage = hmacsha1.ComputeHash(messageBytes); 

     //--signature 
     string signature = ByteToString(hashmessage); 
     Console.WriteLine("Signature: " + signature); 

     Console.WriteLine("Final Request: " + requesturl + "&oauth_signature=" + signature); 


     Console.ReadKey(true); 



    } 
    public static string ByteToString(byte[] buff) 
    { 
     string sbinary = ""; 

     for (int i = 0; i < buff.Length; i++) 
     { 
      sbinary += buff[i].ToString("X2"); // hex format 
     } 
     return (sbinary); 
    } 
} 

Kiedy przeglądam adres URL aplikacji, które mi dają, otrzymuję następującą odpowiedź:

oauth_problem=signature_invalid&debug_sbs=GET&http%3A%2F%2Fwww.flickr.com%2Fservices%2Foauth%2Frequest_token&oauth_callback%3Dhttp%253A%252F%252Fwww.google.be%26oauth_consumer_key%3D1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a%26oauth_nonce%3D27504343%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1329469580 

Wygląda na to, że mój podpis na żądanie jest nieprawidłowy.

Mam nadzieję, że ktoś pomoże mi uzyskać odpowiedni podpis na te prośby.

wiem, że to FlickNet Biblioteka że już zrobili ciężką pracę dla większości programistów, ale myślę, że może to być przydatne, aby uzyskać ten działa też. Zajrzałem do kodu źródłowego FlickrNet, ale nie znalazłem ostatecznego spokoju, aby dokończyć ten kod.

Daj mi znać, jeśli możesz mi pomóc. Byłoby wspaniale!

Dzięki!

+0

Uwaga dla mnie: Więcej informacji na temat uwierzytelniania oauth można znaleźć tutaj: http://hueniverse.com/oauth/guide/authentication/ Spojrzę na to tak szybko, jak mogę :) – ThdK

Odpowiedz

9

OK, w końcu znalazłem odpowiedź sam. Oto kilka rzeczy, o których musisz pamiętać przy podpisywaniu wniosków o ohine.

  1. podpis musi być szyfrowane z HMAC-SHA1 używając basestring (patrz Nr.2) jako tekst do zaszyfrowania i clientsecret i token_secret (jeśli posiadasz) (patrz nr. 3)
  2. basestring = [HttpMethod] & [FlickrAPIEndpoint] & [parametry]
  3. klucz żądanie oauth_token = [ApiSecret] & (lub klucz = [ApiSecret] & [oauth_token_secret] na żądanie access_token)

UWAGA: (! W dwóch częściach) FlickrAPIEndPoint i parametry należy urlencoded I stosuje się oddzielną klasę dla kodowania, ponieważ metoda HttpUtility.UrlEncode wykorzystuje kodowanie małą podczas kodowania wielkie powinny być stosowane.

WAŻNE: Parametry muszą być w kolejności alfabetycznej!

Oto kod dla aplikacji konsoli, która stworzy podpisany wniosek o dowód żądanie oraz wniosku tokena tajemnicy.

class Program 
{ 
    private static string Secret = "9dcc18a121e9a02e"; 
    private static string ConsumerKey = "3aafc63ec6b05f3f9a9ff3a1c35ce541"; 
    private static string request_token = ""; 

    static void Main(string[] args) 
    { 

     string requestString = "http://www.flickr.com/services/oauth/request_token"; 

     //generate a random nonce and a timestamp 
     Random rand = new Random(); 
     string nonce = rand.Next(999999).ToString(); 
     string timestamp = GetTimestamp(); 

     //create the parameter string in alphabetical order 
     string parameters = "oauth_callback=" + UrlHelper.Encode("http://www.example.com"); 
     parameters += "&oauth_consumer_key=" + ConsumerKey; 
     parameters += "&oauth_nonce=" + nonce; 
     parameters += "&oauth_signature_method=HMAC-SHA1"; 
     parameters += "&oauth_timestamp=" + timestamp; 
     parameters += "&oauth_version=1.0"; 

     //generate a signature base on the current requeststring and parameters 
     string signature = generateSignature("GET", requestString, parameters); 

     //add the parameters and signature to the requeststring 
     string url = requestString + "?" + parameters + "&oauth_signature=" + signature; 

     //test the request 
     WebClient web = new WebClient(); 
     string result = web.DownloadString(url); 

     Console.WriteLine("Flickr Response: "); 
     Console.WriteLine(result); //contains the oauth_token and the oauth_token_secret 
     Console.ReadKey(true); 

    } 

    private static string generateSignature(string httpMethod, string ApiEndpoint, string parameters) 
    { 
     //url encode the API endpoint and the parameters 

     //IMPORTANT NOTE: 
     //encoded text should contain uppercase characters: '=' => %3D !!! (not %3d) 
     //the HtmlUtility.UrlEncode creates lowercase encoded tags! 
     //Here I use a urlencode class by Ian Hopkins 
     string encodedUrl = UrlHelper.Encode(ApiEndpoint); 
     string encodedParameters = UrlHelper.Encode(parameters); 

     //generate the basestring 
     string basestring = httpMethod + "&" + encodedUrl + "&"; 
     parameters = UrlHelper.Encode(parameters); 
     basestring = basestring + parameters; 

     //hmac-sha1 encryption: 

     System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); 

     //create key (request_token can be an empty string) 
     string key = Secret + "&" + request_token; 
     byte[] keyByte = encoding.GetBytes(key); 

     //create message to encrypt 
     byte[] messageBytes = encoding.GetBytes(basestring); 

     //encrypt message using hmac-sha1 with the provided key 
     HMACSHA1 hmacsha1 = new HMACSHA1(keyByte); 
     byte[] hashmessage = hmacsha1.ComputeHash(messageBytes); 

     //signature is the base64 format for the genarated hmac-sha1 hash 
     string signature = System.Convert.ToBase64String(hashmessage); 

     //encode the signature to make it url safe and return the encoded url 
     return UrlHelper.Encode(signature); 

    } 

    //generator of unix epoch time 
    public static String GetTimestamp() 
    { 
     int epoch = (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds; 
     return epoch.ToString(); 
    } 

} 

klasa UrlHelper Ian Hopkins używany do kodowania url

/// <summary> 
    /// URL encoding class. Note: use at your own risk. 
    /// Written by: Ian Hopkins (http://www.lucidhelix.com) 
    /// Date: 2008-Dec-23 
    /// (Ported to C# by t3rse (http://www.t3rse.com)) 
    /// </summary> 
    public class UrlHelper 
    { 
     public static string Encode(string str) 
     { 
      var charClass = String.Format("0-9a-zA-Z{0}", Regex.Escape("-_.!~*'()")); 
      return Regex.Replace(str, 
       String.Format("[^{0}]", charClass), 
       new MatchEvaluator(EncodeEvaluator)); 
     } 
    public static string EncodeEvaluator(Match match) 
    { 
     return (match.Value == " ") ? "+" : String.Format("%{0:X2}", Convert.ToInt32(match.Value[0])); 
    } 

    public static string DecodeEvaluator(Match match) 
    { 
     return Convert.ToChar(int.Parse(match.Value.Substring(1), System.Globalization.NumberStyles.HexNumber)).ToString(); 
    } 

    public static string Decode(string str) 
    { 
     return Regex.Replace(str.Replace('+', ' '), "%[0-9a-zA-Z][0-9a-zA-Z]", new MatchEvaluator(DecodeEvaluator)); 
    } 
} 
+0

bardzo pomaga, dzięki ! –

1

Czy piszesz to od zera? Jeśli tak, nie powinieneś. Zamiast tego użyj http://flickrnet.codeplex.com/. Ta biblioteka już zrobiła dla ciebie ciężki trening.

+1

Pobrałem bibliotekę flickrnet ale chciałam zrozumieć, co robi. Ponieważ dla bardzo małej aplikacji, w której potrzebuję tylko jednego lub tylko kilku wniosków do apikera Flickr, pomyślałem, że sam mogę to napisać. (Zrobiłem to samo dla Facebooka API w ubiegłym roku) – ThdK

+1

@ThomasDekiere Kod źródłowy jest właśnie na codeplex, dzięki czemu można zobaczyć, co robi, pobierając go i przeglądając źródło. – Jeff

+0

Ok wydaje się, że najpierw potrzebowałem więcej badań. Przeszukałem kod źródłowy flickrnet, nie znajdując potrzebnych informacji. Teraz, po przeczytaniu wielu przykładów we wszystkich językach programowania, stworzyłem aplikację konsolową symulującą tworzenie zapytania do apikera flickr. Ale otrzymuję niepoprawny komunikat podpisu. Stworzyłem tutaj nowe pytanie z wszystkimi informacjami i kodem, które mam: http://stackoverflow.com/questions/9330004/invalid-signature-for-signing-requests-to-the-flickr-api-simulation-in -console – ThdK

Powiązane problemy