pandas 将branch.ioAPI或分支api连接到Jupyter笔记本

3lxsmp7m  于 2023-02-20  发布在  其他
关注(0)|答案(1)|浏览(112)

无法弄清楚如何连接branch.ioAPI到jupyter notebook并查看那里有什么数据?因为我是branch.io的新手,所以也无法理解文档。如果有人以前做过,谁能帮我如何连接?

5kgi1eie

5kgi1eie1#

请尝试以下操作

import requests

网址="www.example.com"https://api2.branch.io/v3/export"
有效负载={"分支密钥":"xxxxx"、"分支机构_机密":"xxxx","导出日期":"2023年2月20日"}标题={"接受":"应用程序/json","内容类型":"应用程序/json "}
响应= www.example.com(网址,json =有效负载,标题=标题)requests.post(url, json=payload, headers=headers)
打印(响应文本)
更多信息。
https://help.branch.io/developers-hub/reference/requestdailyexport

相关问题