gpt4 book ai didi

python - 使用 (apitoken/apikey) 自动上传 bugsense proguard 映射文件

转载 作者:太空宇宙 更新时间:2023-11-04 03:49:48 26 4
gpt4 key购买 nike

您好,您需要使用 python 和 api(apitoken/apikey) 自动上传 Bugsense proguard 映射文件。我正在尝试使用来自(“github.com/PanosJee/5004886”)的代码,但没有找到任何上传的东西。我可以使用我的 apikey 和 apitoken 对 python 代码(.../errors.json 和 .../analytics.json)中指定的 url 进行 curl ,但不能对要求我登录的任何其他 url 进行 curl

最佳答案

您可以在下面的示例中使用 curl。

APPTOKEN - 为应用程序提供的 token
ACCESSTOKEN - Bugsense 访问 token 。在账户信息 -> 集成 -> API TOKEN 中找到

下面的 Bash 脚本示例:

iOS

export DSYMFILEPATH=file.dSYM
export APPTOKEN="fcccccca"
export ACCESSTOKEN="aaaaa4075aaaa69fbaaaa61"
curl -F "file=@$DSYMFILEPATH" --header "X-Bugsense-apikey: $APPTOKEN" --header "X-BugSense-auth-token: $ACCESSTOKEN" https://symbolicator.splkmobile.com/upload/dsym -i

安卓

export PROGUARDMAPPINGFILE=mapping.txt
export APPTOKEN="acccccca"
export ACCESSTOKEN="aaaaa4075aaaa69fbaaaa61"
export APPVERSION="1.1"
curl -F "file=@$PROGUARDMAPPINGFILE" --header "X-Bugsense-apikey: $APPTOKEN" --header "X-BugSense-auth-token: $ACCESSTOKEN" --header "X-Bugsense-appver: $APPVERSION" https://symbolicator.splkmobile.com/upload/mapping -i

更多详情:https://github.com/bugsense/docs/blob/master/api/read.md

关于python - 使用 (apitoken/apikey) 自动上传 bugsense proguard 映射文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21853188/

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