Forked from anonymous/gist:bff23ec8ac0bd4f1100b70ddeffead1d
Last active
January 5, 2017 17:12
-
-
Save ninnypants/dcacca819e0c86a938f160f9e0ce7881 to your computer and use it in GitHub Desktop.
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
request_token_base_string = 'POST&' + CGI.escape("#{Pazienti2::Application::BLOG_URL}oauth1/request") + "&" + request_token_url.query | |
hmac = OpenSSL::HMAC.digest(OpenSSL::Digest::Digest.new('sha1'), params[:oauth_consumer_secret].encode("ASCII") + '&' + '', request_token_base_string.encode("ASCII")) | |
signature = Base64.encode64(hmac).chomp | |
request_token_params[:oauth_signature] = signature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment