First time here? Check out the FAQ!

gniibe's profile - activity

2013-06-18 04:28:34 -0500 received badge Famous Question (source)
2012-10-19 07:17:37 -0500 received badge Nice Question (source)
2012-10-18 16:30:04 -0500 received badge Student (source)
2012-10-16 18:49:17 -0500 asked a question Login with identi.ca broken (with fix)

Login with identi.ca doesn't work now. I realized that this site doesn't have the feature, either.

In the code: https://github.com/ASKBOT/askbot-devel/blob/master/askbot/deps/django_authopenid/util.py#L412

 def get_identica_user_id(data):
     consumer = oauth.Consumer(data['consumer_key'], data['consumer_secret'])
     token = oauth.Token(data['oauth_token'], data['oauth_token_secret'])
     client = oauth.Client(consumer, token=token)
     url = 'https://identi.ca/api/account/verify_credentials.json'
     content = urllib2.urlopen(url).read()
     json = simplejson.loads(content)
     return json['id']

Line 417, the assignment to content, is wrong. We need to authenticate here.

It should be:

   response, content = client.request(url, 'GET')

With this change, login with identi.ca (askbot 0.7.43) works for me.