• 締切済み

GoogleAPI での 502 Server Error

GoogleAPIをJavaで使用している最中に以下のエラーが出たんですが、何のエラーか分からないので、このエラー理由が分かる方教えてください。 以下、エラー一部 com.google.soap.search.GoogleSearchFault: [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type "text/html", must be: "text/xml". Response was: <html><head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>502 Server Error</title>

みんなの回答

  • tsukachan
  • ベストアンサー率42% (202/470)
回答No.1

エラー表示そのままだと思いますが・・・ htmlはサポートしていないのでxml形式にして下さい。 ということでは?

marucha
質問者

お礼

どうやらサーバーへの付加量が多い時間帯にやるとこのようなエラーでるということが分かりました。

marucha
質問者

補足

GoogleSearch gs = new GoogleSearch(); gs.setQueryString(word); GoogleSearchResult result = gs.doSearch(); //ここで上記エラー int hitCount = result.getEstimatedTotalResultsCount(); プログラムでは上記のようにして検索させているだけなのですが、htmlとかxmlとか関係あるんでしょうか? そもそもどうxmlとして受け取るようきりかえるのでしょうか?

関連するQ&A