Export Crashlytics Crashes Report Log

匿名 (未验证) 提交于 2019-12-03 00:46:02

问题:

I need to export the Crashlytics Crashes Report Log into some external file system. Using their hooks will not work as those are only for new reports whereas I need to export the full open issues. I have found this library: https://github.com/MattNewberry/crashstats but it seems that Crashlytics are blocking it from working.

Looking at the chrome debugger, I am trying to replicate the call to their API using curl so I can later code it in Java/ Ruby:

$ curl --data "email=user@example.com&password=pass" --referer "https://w ww.crashlytics.com/login" --header "Accept:application/json, text/javascript, * /*; q=0.01" --header "X-CSRF-Token:E5puPaolZYUNJ2IbUX2u9S+W0iqU/6/9KDr4ivcmOq0= " --header "X-CRASHLYTICS-DEVELOPER-TOKEN:0bb5ea45eb53fa71fa5758290be5a7d5bb867 e77" --header "X-Requested-With:XMLHttpRequest" https://www.crashlytics.com/api /v2/session

ButI keep getting the following response:

{"message":"Request not valid"}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!