に、私は次のエラーを取得していますが: 取得InvalidURLError:のApplicationError:1 URLFetchの
InvalidURLError: ApplicationError: 1
は私のコードをチェックし、いくつかの様々なものをログに記録され、URLのは、このエラーはかなり正常に見える表示させます。彼らはurllib.quoteによって引用されており、ブラウザーを介してそれらを訪問すると通常の結果になります。
多くのURLではエラーが発生しています。 URLはAPIサービスを指し、アプリ内で構築されます。
Btwは、google.appengine.api.urlfetchソースコードへのリンクです:http://code.google.com/p/googleappengine/source/browse/trunk/python/google/appengine/api/urlfetch.py?r=56。
ドキュメントストリングでは、「URLが無効な場合はInvalidURLError」というエラーが発生するはずです。そしてただ、これをテストしたい人のために、それを簡単にするために
を「URLが空の文字列または明らかに無効である場合、我々はurlfetch.InvalidURLErrorを投げる」:
url = 'http://api.embed.ly/1/oembed?key=REMOVEDKEY&maxwidth=400&urls=http%3A//V.interesting.As,http%3A//abcn.ws/z26G9a,http%3A//apne.ws/z37VyP,http%3A//bambuser.com/channel/baba-omer/broadcast/2348417,http%3A//bambuser.com/channel/baba-omer/broadcast/2348417,http%3A//bambuser.com/channel/baba-omer/broadcast/2348417,http%3A//bbc.in/xFx3rc,http%3A//bbc.in/zkkLJq,http%3A//billingsgazette.com/news/local/former-president-bush-to-speak-at-billings-fundraiser-in-may/article_f7ef425a-349c-56a9-a399-606b48033f35.html,http%3A//billingsgazette.com/news/local/former-president-bush-to-speak-at-billings-fundraiser-in-may/article_f7ef425a-349c-56a9-a399-606b48033f35.html,http%3A//billingsgazette.com/news/local/friday-forecast-calls-for-cloudy-windy-day-nighttime-snow-possible/article_d3eb3159-68b0-5559-8255-03fce56eaedd.html,http%3A//billingsgazette.com/news/local/gallery-toy-run/collection_f5042a31-bfd4-5f63-a901-2a8c3e8fb26a.html%230,http%3A//billingsgazette.com/news/local/gas-prices-continue-to-drop-in-billings/article_4e8fd07e-0e1e-5c0e-b551-4162b60c4b60.html,http%3A//billingsgazette.com/news/local/gas-prices-continue-to-drop-in-billings/article_713a0c32-32c9-59f1-9aeb-67b8462bbe88.html,http%3A//billingsgazette.com/news/local/gas-prices-continue-to-fall-in-billings-area/article_2bdebf4b-242c-569e-b414-f388a48f4a14.html,http%3A//billingsgazette.com/news/local/gas-prices-dip-below-a-gallon-at-some-billings-stations/article_c7f4d373-dc2b-55c0-b457-10346c0274a6.html,http%3A//billingsgazette.com/news/local/gas-prices-keep-dropping-in-billings-area/article_3666cf9c-4552-5108-9d5c-de2bba12fa3f.html,http%3A//billingsgazette.com/news/local/government-and-politics/city-picks-st-vincent-as-care-provider-for-health-insurance/article_a899f885-15e1-5b98-b899-75acc01e8feb.html,http%3A//billingsgazette.com/news/local/government-and-politics/linder-settles-in-after-first-year-as-sheriff/article_55a9836e-2196-546d-80f0-48bdef717fa3.html,http%3A//billingsgazette.com/news/local/government-and-politics/new-council-members-city-judge-sworn-in/article_bb7ac948-1d45-579c-a057-1323fb2e643d.html'
from google.appengine.api import urlfetch
result = urlfetch.fetch(url=url)
ここでトレースバックです: トレースバック(最新の最後の呼び出し): ファイル ""、行1、 ファイル "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/api/urlfetch .py "、行263、フェッチreturn rpc.get_result() ファイル" /Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-de (自己) ファイル "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-fault.bundle/Contents/Resources/google_appengine/google/appengine/google/appengine/api/apiproxy_stub_map.py"、get_resultdefault.bundle /コンテンツ/リソース/ google_appengine /グーグル/ AppEngineの/ API/urlfetch.py」、行359、_get_fetch_resultで レイズInvalidURLError(STR(ERR)) InvalidURLError:のApplicationError:1
それは何かかしら非常にシンプルで、私はこのすべてから欠けている。あなたのコメントやアイディアを感謝します。ありがとう!
invlidであるurlを送信すると、国際的な文字に問題が発生する可能性があります。 –
ちょっとシェイ、それを追加しました... –
あなたはこれに対する解決策を見つけましたか?つまり、20148文字以上のURLを使用できるのであれば、 –