2012-05-02 9 views
2

私はGoogleハイブリッドプロトコル(oauth over openid)を実装しようとしています。 そしてGoogleがoauthパーミッション(Gmailで試してみる)を求めているのではなく、openidだけです。 私はGoogleのAPIコンソールで登録された:ここでGoogleハイブリッド(openid + oauth)プロトコルは127.0.0.1で動作しません

Client ID for web applications 
Client ID: 248141267047.apps.googleusercontent.com 
Email address:[email protected] 
Client secret: 
Redirect URIs: http://127.0.0.1:8000/oauth2callback 
JavaScript origins:  http://127.0.0.1:8000 

はOpenIDのURLを生成するための私のpythonのコードです:

class OpenIDOAuthRequest(Extension): 

    ns_alias = 'oauth' 

    def __init__(self, consumer, scope, ns_uri=None): 
     Extension.__init__(self) 
     self.consumer = consumer 
     self.scope = scope 
     self.ns_uri = ns_uri or oauth_ns_uri 

    def getExtensionArgs(self): 
     return { 
      'consumer': self.consumer, 
      'scope': ' '.join(self.scope), 
     } 


def google(): 
     #define google openid url 
     openid_session = {} 
     openid_store = filestore.FileOpenIDStore('.') 
     consumer = Consumer(openid_session, openid_store) 
     openid = u"https://www.google.com/accounts/o8/id" 
     URLS = { 
      'ax_last': "http://axschema.org/namePerson/last", 
      'ax_first': "http://axschema.org/namePerson/first", 
      'ax_email': "http://axschema.org/contact/email", 
      "country":"http://axschema.org/contact/country/home", 
      "timezone":"http://axschema.org/pref/timezone", 
      "language":"http://axschema.org/pref/language", 
      "person":"http://axschema.org/namePerson", 
     } 
     #defining what fields we're going to get 
     ax_request = ax.FetchRequest() 
     for k,v in URLS.iteritems(): 
      ax_request.add(ax.AttrInfo(v, required = True)) 
     oa = OpenIDOAuthRequest("248141267047.apps.googleusercontent.com",["https://mail.google.com/",]) 
     try: 
      authrequest = consumer.begin(openid) 
     except DiscoveryFailure, e: 
      print e 
      print "some errror happened" 
     else: 
      authrequest.addExtension(ax_request) 
      authrequest.addExtension(oa) 



     redirecturl = authrequest.redirectURL("http://127.0.0.1:8000", 
      return_to = "http://127.0.0.1:8000/oauth2callback", 
      immediate=False) 
     print redirecturl 

これは、次のURLを生成します。

https://accounts.google.com/o/openid2/auth?openid.assoc_handle=AMlYA9Vr6Biwp-rCAr4TLbf8CtItR-zr3bs0LT7oYQ3Pakg93ivCS_6C&openid.ax.mode=fetch_request&openid.ax.required=ext0,ext1,ext2,ext3,ext4,ext5,ext6&openid.ax.type.ext0=http://axschema.org/contact/email&openid.ax.type.ext1=http://axschema.org/namePerson&openid.ax.type.ext2=http://axschema.org/namePerson/first&openid.ax.type.ext3=http://axschema.org/pref/timezone&openid.ax.type.ext4=http://axschema.org/pref/language&openid.ax.type.ext5=http://axschema.org/contact/country/home&openid.ax.type.ext6=http://axschema.org/namePerson/last&openid.claimed_id=http://specs.openid.net/auth/2.0/identifier_select&openid.identity=http://specs.openid.net/auth/2.0/identifier_select&openid.mode=checkid_setup&openid.ns=http://specs.openid.net/auth/2.0&openid.ns.ax=http://openid.net/srv/ax/1.0&openid.ns.oauth=http://specs.openid.net/extensions/oauth/1.0&openid.oauth.consumer=248141267047.apps.googleusercontent.com&openid.oauth.scope=https://mail.google.com/&openid.realm=http://127.0.0.1:8000&openid.return_to=http://127.0.0.1:8000/oauth2callback?janrain_nonce%3D2012-05-01T22%253A50%253A33ZUW7vcj 

をそして、それはすべての必要な拡張機能があります。しかし、もし私がこのURLに行くと、それは私にGmailの許可を求めることはありません。また、私はsanebox.comからの同様のURLと比較していました。そして期待どおりに動作し、Gmailの許可を求めています。しかし、私はなぜ彼らのURLが動作していると私の本質的な違いを参照していませんでした。さらに、私はsaneboxのURLに私のURLの127.0.0.1を置き換え、他の部分は同じままにしました。そして...今、Gmailの許可を求めています。 127.0.0.1に戻り、質問を停止します。ここにsaneboxのURLがあります:

https://accounts.google.com/o/openid2/auth?openid.assoc_handle=AMlYA9UV4Ud714HHaFJ0fpItabA8v-zw0QuReEPcn61ilJzyFrFia5PO&openid.ax.mode=fetch_request&openid.ax.required=ext0,ext1,ext2,ext3,ext4,ext5,ext6&openid.ax.type.ext0=http://axschema.org/pref/timezone&openid.ax.type.ext1=http://axschema.org/contact/country/home&openid.ax.type.ext2=http://axschema.org/pref/language&openid.ax.type.ext3=http://axschema.org/namePerson/last&openid.ax.type.ext4=http://axschema.org/namePerson/first&openid.ax.type.ext5=http://axschema.org/namePerson&openid.ax.type.ext6=http://axschema.org/contact/email&openid.claimed_id=http://specs.openid.net/auth/2.0/identifier_select&openid.identity=http://specs.openid.net/auth/2.0/identifier_select&openid.mode=checkid_setup&openid.ns=http://specs.openid.net/auth/2.0&openid.ns.ax=http://openid.net/srv/ax/1.0&openid.ns.oauth=http://specs.openid.net/extensions/oauth/1.0&openid.ns.sreg=http://openid.net/extensions/sreg/1.1&openid.oauth.consumer=www.sanebox.com&openid.oauth.scope=https://mail.google.com/+http://www.google.com/m8/feeds&openid.realm=https://www.sanebox.com/&openid.return_to=https://www.sanebox.com/users?_method%3Dpost%26open_id_complete%3D1 

私は何が足りないのですか?なぜ私はAPIのコンソールでこのURLをregestered場合127.0.0.1のために動作しません。そして、それはopenidでうまくいきました。そしてopenidなしでoauth自体でうまくいっていました。しかし今、openidを使ってoauthを使ってみると、Gmailに許可を求めることはありません。

答えて

0

私は、PHP、ASP、DOT NETのコードを実行していました。これは絶対にうまく動作しており、Pythonアプリケーションも正しく動作することを確認しています。デフォルトのアプリを変更する必要があります。最初に提供されているデフォルトのアプリを実行して、変更しようとします。デフォルトのアプリケーションが動作しない場合は、Googleにバグレポートを開くこともできます。

+0

問題は、127.0.0.1で実行している場合にのみ発生します。私はホストファイルに必要なドメインを追加することに終わった。そして、デフォルトのアプリケーションは、Pythonのハイブリッドプロトコルには存在しません。私が既に使っているopenidのlibのみ – Aldarund

+0

@Aldarund ITはlocalhostでも私のために働いた。つまり、127.0.0.1の私のために – Vineet1982

+0

私は2つのリンクを掲示した。あなたはそれらを両方とも開こうとすることができる。 localhostとのリンクはGmailへのアクセスを要求しませんが、通常のドメインとのリンクはそれを行います。リンク間の違いはドメインだけです。 – Aldarund

関連する問題