没有标签从tag_recent_media返回

时间:2015-05-07 03:09:13

标签: python instagram instagram-api

你好我正在使用python instagram API,我正在使用这个例子:

from instagram.client import InstagramAPI

access_token = "YOUR_ACCESS_TOKEN"
api = InstagramAPI(access_token=access_token)

recent_media, next_ = api.tag_recent_media( count = 20, max_tag_id = '', tag_name = 'cats' ) )

for media in recent_media:
    print media.tags  # attempt to get tags associated with each media

当我运行它时,有时会说媒体没有“标签”属性。但我正在搜索tag_recent_media,媒体怎么可能没有标签?

有什么想法?

谢谢!

1 个答案:

答案 0 :(得分:1)

也许媒体没有任何标签,评论有吗?

尝试检查一下,因为/ recent端点也会返回带有评论标签的媒体。