Google App Engineアプリを持っています- http://mylovelyapp.appspot.com/ ページがあります-mylovelypage
当面は、ページはself.response.out.write('OK')
を実行します
私のコンピューターで次のPython=を実行すると、
import urllib2
f = urllib2.urlopen("http://mylovelyapp.appspot.com/mylovelypage")
s = f.read()
print s
f.close()
「OK」と表示されます
問題は、login:required
アプリのyamlのこのページへ
次に、GoogleアカウントのログインページのHTMLを出力します
「通常の」認証アプローチを試しました。例えば.
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
auth_handler = urllib2.HTTPBasicAuthHandler()
auth_handler.add_password(None,
uri='http://mylovelyapp.appspot.com/mylovelypage',
user='[email protected]',
passwd='billybobspasswd')
opener = urllib2.build_opener(auth_handler)
urllib2.install_opener(opener)
しかし、それは違いはありません-私はまだログインページのHTMLを返します。
私は試しました GoogleのClientLogin auth API が動作しません。
h = httplib2.Http()
auth_uri = 'https://www.google.com/accounts/ClientLogin'
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
myrequest = "Email=%s&Passwd=%s&service=ah&source=DALELANE-0.0" % ("[email protected]", "billybobspassword")
response, content = h.request(auth_uri, 'POST', body=myrequest, headers=headers)
if response['status'] == '200':
authtok = re.search('Auth=(\S*)', content).group(1)
headers = {}
headers['Authorization'] = 'GoogleLogin auth=%s' % authtok.strip()
headers['Content-Length'] = '0'
response, content = h.request("http://mylovelyapp.appspot.com/mylovelypage",
'POST',
body="",
headers=headers)
while response['status'] == "302":
response, content = h.request(response['location'], 'POST', body="", headers=headers)
print content
トークンを正しく取得できるようですが、「mylovelypage」を呼び出したときにヘッダーでそれを使用しようとすると、ログインページのHTMLが返されます。 :
誰か助けてもらえますか?
---(GDataクライアントライブラリ を使用してこのようなことを行うことはできますか?私が読んだことから、それはApp Engineアプリにアクセスできるはずだと思いますが、App Engineのもので認証を機能させるのにこれ以上成功していません
サンプル、記事、または私が開始するために検索する必要があるキーワードだけへのポインタがあれば、非常に高く評価されます。
ありがとう!
app Engineにデータをアップロードするappcfg.pyは、App Engineサーバーで自身を認証するために、これを正確に実行する必要があります。関連する機能はappengine_rpc.pyに抽象化されています。簡単に言えば、解決策は次のとおりです。
_ Authenticate を確認して、appcfgがClientLoginからのさまざまな戻りコードを処理する方法を確認したり、 _ GetOpener を確認して、appcfgがurllib2 OpenerDirectorを作成しない方法を確認したりすることもできます。 HTTPリダイレクトに従います。または、実際には、AbstractRpcServerクラスとHttpRpcServerクラスをそのまま使用することもできます。これらのクラスは、必要なほとんどすべてのことを行うからです。
答えを提供してくれたArachnidに感謝-提案どおりに機能した
次の人が試してみるのに役立つ場合に備えて、ここにコードの簡略化したコピーを示します。
import os
import urllib
import urllib2
import cookielib
users_email_address = "[email protected]"
users_password = "billybobspassword"
target_authenticated_google_app_engine_uri = 'http://mylovelyapp.appspot.com/mylovelypage'
my_app_name = "yay-1.0"
# we use a cookie to authenticate with Google App Engine
# by registering a cookie handler here, this will automatically store the
# cookie returned when we use urllib2 to open http://currentcost.appspot.com/_ah/login
cookiejar = cookielib.LWPCookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookiejar))
urllib2.install_opener(opener)
#
# get an AuthToken from Google accounts
#
auth_uri = 'https://www.google.com/accounts/ClientLogin'
authreq_data = urllib.urlencode({ "Email": users_email_address,
"Passwd": users_password,
"service": "ah",
"source": my_app_name,
"accountType": "HOSTED_OR_GOOGLE" })
auth_req = urllib2.Request(auth_uri, data=authreq_data)
auth_resp = urllib2.urlopen(auth_req)
auth_resp_body = auth_resp.read()
# auth response includes several fields - we're interested in
# the bit after Auth=
auth_resp_dict = dict(x.split("=")
for x in auth_resp_body.split("\n") if x)
authtoken = auth_resp_dict["Auth"]
#
# get a cookie
#
# the call to request a cookie will also automatically redirect us to the page
# that we want to go to
# the cookie jar will automatically provide the cookie when we reach the
# redirected location
# this is where I actually want to go to
serv_uri = target_authenticated_google_app_engine_uri
serv_args = {}
serv_args['continue'] = serv_uri
serv_args['auth'] = authtoken
full_serv_uri = "http://mylovelyapp.appspot.com/_ah/login?%s" % (urllib.urlencode(serv_args))
serv_req = urllib2.Request(full_serv_uri)
serv_resp = urllib2.urlopen(serv_req)
serv_resp_body = serv_resp.read()
# serv_resp_body should contain the contents of the
# target_authenticated_google_app_engine_uri page - as we will have been
# redirected to that page automatically
#
# to prove this, I'm just gonna print it out
print serv_resp_body
clientLoginが機能しない場合は、App Engineの OAuthサポート を試してください。
私はAppEngineやGoogleのWeb APIにあまり詳しくありませんが、ブルートフォースアプローチの場合は、mechanize( http://wwwsearch.sourceforge.net/mechanize/ )などのスクリプトを簡単に記述できます。クライアントの実際の作業を開始する前に、ログインプロセスについて説明します。