gpt4 book ai didi

python - 如何通过 Python 管理我的 Instagram 帐户?

转载 作者:太空宇宙 更新时间:2023-11-03 18:12:41 24 4
gpt4 key购买 nike

我正在尝试编写一个Python程序来根据一些用户在帖子中使用的标签来关注他们。我知道 Python 的 instagram 包,但有一些事情我不明白。

我需要 token 来编写这个程序吗?如果是这样, token 到底是什么?当我运行 get-token 函数时,它要求我编写重定向 URL、请求的范围和“重定向后在查询字符串中粘贴代码:”,但我不知道是这样的。

谢谢你,JM

最佳答案

您需要了解OAuth 2为了理解 token 的真正含义。但本质上,重定向 URL 是 Instagram 在批准您的应用程序后将其发送给想要使用您的应用程序的用户的位置。您需要托管您的应用程序。 (How to do this?)。 Instagram 还有一个页面可以帮助开发者入门 here .

完成上述步骤并获得 token 后,您可以执行以下操作,

from instagram.client import InstagramAPI
access_token = "YOUR_ACCESS_TOKEN"
api = InstagramAPI(access_token=access_token)
# Subscribe to all media tagged with 'fox'
api.create_subscription(object='tag', object_id='fox', aspect='media', callback_url='http://example.com/hook/instagram')

关于python - 如何通过 Python 管理我的 Instagram 帐户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25591565/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com