Slide 33
Slide 33 text
FLICKR API SIGNATURE (2009)
˒ Sort parameters alphabetically. Call the name of
the first parameter key1, its value value1, and so on.
˒ Construct a string:
tosign = SECRET + key1 + value1 + key2 + value2 + ...
˒ Compute:
sig = md5(tosign)
˒ Append a parameter “api_sig” to the parameter
list, with sig as its value.