0

リクエストを使用して、地理的に制限されたエリアからツイートを取得しています。結果を印刷しようとすると、結果そのものではなく、結果の要約のように見えるものが表示されます。私のコードは次のとおりです。

from __future__ import unicode_literals
import requests
from requests_oauthlib import OAuth1
import pprint


consumer_key=""
consumer_secret=""
access_key=""
access_token_secret=""
access_token=""
header_auth=True

url = 'https://api.twitter.com/1.1/search/tweets.json'

headeroauth = OAuth1(consumer_key, consumer_secret,
                     access_key, access_token_secret,
                     signature_type='auth_header')  

query_params = { 'q': 'the',
                 'geocode': '33.520661, -86.80249, 50mi' 
               }

response = requests.get(url, auth=headeroauth, params=query_params)
data = response.json()
pprint.pprint(data)

そして、私が返す応答は次のとおりです。

{u'search_metadata': {u'count': 15, u'completed_in': 0.025000000000000001,
u'max_id_str': u'349363977614143489', u'since_id_str': u'0', u'refresh_url': u'
since_id=349363977614143489&q=the&geocode=33.520661%2C%20
86.80249%2C%2050mi&include_entities=1', u'since_id': 0, u'query': u'the', u'max_id': 349363977614143489}, u'statuses': []}

ツイートの実際のコンテンツを返すように設定するにはどうすればよいですか? ありがとう!

4

2 に答える 2

0

ジオコード パラメーターのスペースを削除すると、次のステータスが返されます。

query_params = { 'q': 'the',
                 'geocode': '33.520661,-86.80249,50mi' 
               }

クエリをテストするには、Twitter 開発コンソールもチェックしてください。

于 2013-06-28T23:06:47.670 に答える