First time here? Check out the FAQ!
2

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.

gniibe's avatar
21
gniibe
asked 2012-10-16 18:49:17 -0500
todofixthis's avatar
1.3k
todofixthis
updated 2012-10-19 07:18:23 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

Thanks, I've applied your change (in the git repo), but did not test it. Could you try?

It might be easier to make a fix on github and make a pull request.

Evgeny's avatar
13.2k
Evgeny
answered 2012-10-18 17:41:52 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments