我正在尝试获取GIPHY Dashboard数据,如下所示:
上传GIF视图的GIF/贴纸总数
当我下载/导出数据时,端点是:https://giphy.com/api/v2/users/aggregations/?start_dt=2013-02-01&end_dt=2020-07-08&content_type=gif,sticker
我需要通过API获取相同的数据。我也阅读了文档,但无法使用find.The文档只有V1接口,而上面的链接/端点是V2

我正在使用Python。谁能帮帮我:)
发布于 2020-07-08 19:26:40
https://giphy.com/api/v2/users/aggregations/?start_dt=2013-02-01&end_dt=2020-07-08&content_type=gif,sticker&api_key={api_token}您是否尝试过访问此端点?你能在这里输入你的api_token并尝试一下吗?
import requests
url = '...'
response = requests.get(url)
response.json()

https://stackoverflow.com/questions/62793599
复制相似问题