0

次のコードは、特定のハッシュタグを含むツイートを抽出するために私が作成したものです。

import json
import oauth2
import time
import io


Consumer_Key = ""
Consumer_Secret = ""

access_token = ""
access_token_secret = ""


def oauth_req(url, key, secret, http_method="GET", post_body="", http_headers=None):
        consumer = oauth2.Consumer(key="", secret="")
        token = oauth2.Token(key=key, secret=secret)
        client = oauth2.Client(consumer, token)
        content = client.request( url, method=http_method, body=post_body, headers=http_headers )
        return content

tweet_url = 'https://twitter.com/search.json?q=%23IPv4%20OR%20%23ISP%20OR%20%23WiFi%20OR%20%23Modem%20OR%20%23Internet%20OR%20%23IPV6'   
jsn = oauth_req( tweet_url, access_token, access_token_secret )
print jsn

私のハッシュタグは、IPv4、IPv6、ISP、インターネット、モデムです。ツイートをファイルに書き込むハッシュタグが少なくとも 1 つ含まれているかどうかをコードで確認したいと考えています。しかし、残念ながら、代わりに html タグを返しています。出力は次のとおりです。

({'content-length': '338352', 'x-xss-protection': '1; mode=block', 'x-content-type-options': 'nosniff',........................
.............................-post-iframe" name="tweet-post-iframe"></iframe>\n  <iframe aria-hidden="true" class="dm-post-iframe" name="dm-post-iframe"></iframe>\n\n</div>\n\n  </body>\n</html>\n')

この点でリードをいただければ幸いです。

4

1 に答える 1