Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to fetch the contact of our webapp user from his Yahoo email using oauth. Our is django based website.

We are getting an authorization error here: something like this

INFO views:urlopen_helper:1085:: _request: Caught HTTPError, code: 401 HTTP Error 401: Authorization Required

Here is the attached code.

def ajax_get_yahoo_token(request):

oauth_token = request.session.get('oauth_token')
oauth_expires_in = request.session.get('oauth_expires_in')
"""
if oauth_token and oauth_expires_in and oauth_expires_in > datetime.now():
    LOGGER.debug('Found oauth_token %s in session and oauth_expires_in = %s , now = %s'%(oauth_token, oauth_expires_in, datetime.now()))
    return HttpResponse(simplejson.dumps({ "stat": "ok", "data": {'oauth_token': oauth_token, 'authorized': }}), mimetype="text/json")
"""

#consumer_key = 'dj0yJmk9akdqcmRENm93YXdNJmQ9WVdrOVRtOTVSR3RZTnpnbWNHbzlNVEEwTWpFNE5qQTJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD1iYg--'
#consumer_key = 'dj0yJmk9cjFHaENlMjVlb240JmQ9WVdrOVdYZ3pObmx1TTJNbWNHbzlNVFUwTWpjd01qWXkmcz1jb25zdW1lcnNlY3JldCZ4PWY0'
consumer_key = 'dj0yJmk9eW5ubnZHbEUxWWZOJmQ9WVdrOVVIQTNRVVJXTjJrbWNHbzlNVGd5TmpRd01UTTJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD1hYQ--'
#consumer_secret = '25ff0b1ba66d56da19f087dd762a6a3bf5d48035'
#consumer_secret = '1a41dbb6b06ecca7f0260a388dcf88987d8c1189'
consumer_secret = '4068ea71230ca5170e9698d3afc5d44db147ed7f%26'
#url = 'https://api.login.yahoo.com/oauth/v2/get_request_token?oauth_nonce=ce2130523f788f313f76314ed3965ea6&oauth_version=1.0&xoauth_lang_pref&oauth_signature_method=PLAINTEXT&oauth_timestamp='  str(int(time.time()))  '&oauth_consumer_key='  consumer_key  '&oauth_signature='  consumer_secret  '&oauth_callback='  "http://iwish-local.com/yahoo_oauth_cb/"
url = 'https://api.login.yahoo.com/oauth/v2/get_request_token'

post_data = {
             'oauth_nonce' : 'ce2130523f788f313f76314ed3965ea6',
             'oauth_version': '1.0',
             'xoauth_lang_pref':'en-us',
             'oauth_timestamp': int(time.time()),
             'oauth_signature_method': 'PLAINTEXT',
             'oauth_consumer_key' : consumer_key,
             'oauth_callback': 'http://iwish-local.com/yahoo_oauth_cb/' }

post_string = urllib.urlencode(post_data)

#XXX: We are appending the oauth_signature separately because there is a %26 in the consumer secret
#which also gets url encoded. The other option is using directly urllib2.urlopen but then we have to
#do error handling ourselves while with urlopen_helper we get the benefit of not having to write the
#error handling code again
post_string += '&oauth_signature=' +consumer_secret
LOGGER.debug(post_string)

try:
    response = urlopen_helper(url, post_string)
    #response = urllib.urlopen(url)
except Exception, e:
    #print e.code
    print e
    response = e

if response:
    print response
    data = {}
    yahoo_oauth = {}
    param_list = response.split('&')
    for param in param_list:
        key, value = param.split('=')
        if key == 'oauth_token':
            data[key] = value
            yahoo_oauth['oauth_token'] = value
        elif key == 'oauth_token_secret':
            yahoo_oauth['oauth_token_secret'] = value
        elif key == 'oauth_expires_in':
            yahoo_oauth['oauth_expires_in'] = datetime.now() + timedelta(seconds=int(value))

    request.session['yahoo_oauth'] = yahoo_oauth
    if settings.TEST_SERVER == False and settings.PRODUCTION_SERVER == False:
        f = open('yahoo_oauth', "w+")
        f.write("%s"%yahoo_oauth['oauth_token_secret'])
        f.close()
    #data = { 'oauth_token': response}

    LOGGER.debug('Session keys are: %s'%(request.session.keys()))
    request.session.modified= True
    return HttpResponse(simplejson.dumps({ "stat": "ok", "data": data}), mimetype="text/json")

return HttpResponse(response)

end of ajax_get_yahoo_token

def escape(s): """Escape a URL including any /.""" return urllib.quote(s, safe='~')

def _utf8_str(s): """Convert unicode to utf-8.""" if isinstance(s, unicode): return s.encode("utf-8") else: return str(s)

def get_normalized_parameters(params): """Return a string that contains the parameters that must be signed.""" #params = self.parameters try: # Exclude the signature if it exists. del params['oauth_signature'] except: pass # Escape key values before sorting. key_values = [(escape(_utf8_str(k)), escape(_utf8_str(v))) \ for k,v in params.items()] # Sort lexicographically, first after key, then after value. key_values.sort() # Combine key value pairs into a string. return '&'.join(['%s=%s' % (k, v) for k, v in key_values])

from oauth import OAuthRequest, OAuthConsumer, OAuthToken, OAuthSignatureMethod_HMAC_SHA1

def yahoo_oauth_cb(request): LOGGER.debug('Session keys in yahoo_oauth_cb are: %s'%(request.session.keys())) oauth_token = request.REQUEST.get('oauth_token') oauth_verifier = request.REQUEST.get('oauth_verifier') if settings.TEST_SERVER == False and settings.PRODUCTION_SERVER == False: f = open("yahoo_oauth", "r+") oauth_token_secret = f.readline() print oauth_token_secret f.close() else: oauth_token_secret = request.session.get('oauth_token_secret')

LOGGER.debug("oauth_token_secret is = %s, oauth_token = %s, oauth_verifier = %s"%(oauth_token_secret, oauth_token, oauth_verifier))

consumer_key = 'dj0yJmk9eW5ubnZHbEUxWWZOJmQ9WVdrOVVIQTNRVVJXTjJrbWNHbzlNVGd5TmpRd01UTTJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD1hYQ--'
#consumer_secret = '25ff0b1ba66d56da19f087dd762a6a3bf5d48035'
#consumer_secret = '1a41dbb6b06ecca7f0260a388dcf88987d8c1189'
consumer_secret = '4068ea71230ca5170e9698d3afc5d44db147ed7f'
#url = 'https://api.login.yahoo.com/oauth/v2/get_request_token?oauth_nonce=ce2130523f788f313f76314ed3965ea6&oauth_version=1.0&xoauth_lang_pref&oauth_signature_method=PLAINTEXT&oauth_timestamp='  str(int(time.time()))  '&oauth_consumer_key='  consumer_key  '&oauth_signature='  consumer_secret  '&oauth_callback='  "http://iwish-local.com/yahoo_oauth_cb/"
url = 'https://api.login.yahoo.com/oauth/v2/get_token'
import time
post_data = {
             'oauth_nonce' : 'ce2130523f788f313f76314ed3965ea6',
             'oauth_version': '1.0',
             'oauth_timestamp': int(time.time()),
             'oauth_signature_method': 'PLAINTEXT',
             'oauth_consumer_key' : consumer_key,
             'oauth_token': oauth_token,
             'oauth_verifier': oauth_verifier,
             'oauth_signature': "%s&%s"%(consumer_secret, oauth_token_secret) }

post_string = urllib.urlencode(post_data)

#XXX: We are appending the oauth_signature separately because there is a %26 in the consumer secret
#which also gets url encoded. The other option is using directly urllib2.urlopen but then we have to
#do error handling ourselves while with urlopen_helper we get the benefit of not having to write the
#error handling code again
#post_string = '&oauth_signature=%s%s%s'%(consumer_secret, '%26', oauth_token_secret)
print 'post_string in yahoo_oauth_cb is= ', post_string
guid=None

try:
    response = urlopen_helper(url, post_string)
    #response = urllib.urlopen(url)
except Exception, e:
    #print e.code
    print e
    response = e
else:
    print response
    guid = oauth_token_secret = access_token = None
    param_list = response.split('&')
    for param in param_list:
        key, value = param.split('=')
        if key == 'xoauth_yahoo_guid':
            guid = value
        elif key == 'oauth_token':
            access_token = value
        elif key == 'oauth_token_secret':
            oauth_token_secret = value

if not guid:
    return HttpResponseBadRequest()

url = 'http://social.yahooapis.com/v1/user/%s/profile'%(guid)
print 'access_token is: ', access_token
timestamp = int(time.time())
params = {'format': 'json', 
          'start': '0',
          'count': 'max',
          'realm':"yahooapis.com",
          'oauth_consumer_key': consumer_key,
          'oauth_nonce': 'ce2130523f788f313f76314ed3965ea6',
          'oauth_timestamp': timestamp,
          'oauth_version': '1.0',
          'oauth_token': access_token,
          'oauth_signature_method':"HMAC-SHA1",
        }

#key_values = [(urllib.quote(k, safe="~"), urllib.quote(v, safe="~")) for k,v in params.items()]
# Sort lexicographically, first after key, then after value.    
#key_values.sort()
#params_string = '&'.join(['%s=%s' % (k, v) for k, v in key_values])

sorted_params = []
for key in sorted(params.iterkeys()):
    sorted_params.append((key, params[key]))
print 'sorted_params are: ', sorted_params

#url = url  '?'  '&'.join(['%s=%s' %(k, v) for k, v in sorted_params])
#url = url  '?'  get_normalized_parameters(params)

sig = (
    escape('GET'),
    escape(url),
    escape(get_normalized_parameters(params)),
)
raw = '&'.join(sig)

#base_string = 'GET&'  urllib.quote(url)  params_string
#base_string = '&'.join(['%s=%s' %(k, urllib.quote(v)) for k, v in sorted_params])
#base_string = "&".join(sorted_params)
#base_string = base_string  

#base_string = urllib.urlencode(sorted_params)

print 'base_string is: ', raw
signing_key = "%s"%(consumer_secret) + "&"  + "%s"%(oauth_token_secret)
print 'signing_key is', signing_key

import hmac
import hashlib
import base64
import binascii
digest = hmac.new(signing_key, raw, hashlib.sha1).digest()
LOGGER.debug('digest is ', digest)
oauth_signature= binascii.b2a_base64(digest)[:-1]
#LOGGER.debug(oauth_signature_old = base64.encodestring(digest))
print 'oauth_signature is ', oauth_signature
#print 'oauth_signature_old is ', oauth_signature_old
#print 'b64encode is ', base64.b64encode(digest)

url= url + '?' +  '&'.join(['%s=%s' %(k, v) for k, v in sorted_params])
print 'request url is %s'%url

"""
headers = [('Authorization', 'OAuth realm="yahooapis.com",oauth_consumer_key="%s",oauth_nonce="ce2130523f788f313f76314ed3965ea6",oauth_signature_method="PLAINTEXT",oauth_timestamp="%s",oauth_token="%s",oauth_version="1.0",oauth_signature=%s%s'%(consumer_key, timestamp, access_token, consumer_key, oauth_token_secret))
           ]
print headers
"""

#sorted_params['oauth_signature'] = oauth_signature
url += ('&oauth_signature=' + oauth_signature)
print 'final url is', url

try:
    response = urlopen_helper(url)
    #response = urllib.urlopen(url)
except Exception, e:
    #print e.code
    print e
    response = e
else:
    print response

return HttpResponse(response)
#return HttpResponse('hello world')
share|improve this question
Seems like the formatting has gone wrong here. Code can be found here..pastebin.com/Wbx6faPK – pankajanand18 Dec 3 '12 at 11:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.