Crash webcams for iTunes Connect?

I can get crashes when I go to Xcode -> Window -> Organizer -> Crashes:

enter image description here

I was wondering if it is possible to get a webhook whenever an accident is sent to itunes (not other crash reports like Crashlytics, Hockeyapp, etc.), so I can get real-time notifications using Slack whenever times when a manufacturing failure occurs.

Is it possible? My only problem is that profiles and credentials to ensure blocking will not do me. I could not find any resources on the Internet on this issue.

+4
source share
2 answers

: . ( ), api

+1

HTTP Xcode Organizer, , GET http://crashwebservices.apple.com

Charles Copy cURL Request, Terminal.

, :

curl -H 'Host: crashwebservices.apple.com' -H 'X-Apple-I-Identity-Id: myIdentityId' -H 'User-Agent: Xcode' -H 'X-Apple-GS-Token: myToken' -H 'X-Apple-I-MD-LU: myMDId' -H 'X-Apple-App-Info: com.apple.gs.xcode.auth' -H 'X-Mme-Device-Id: myDeviceId' -H 'X-MMe-Client-Info: <MacBookPro11,3> <Mac OS X;10.13.2;17C205> <com.apple.AuthKit/1 (com.apple.dt.Xcode/13772)>' -H 'X-Apple-I-TimeZone: CET' -H 'X-Apple-I-Client-Time: 2018-02-02T08:43:21Z' -H 'X-Xcode-Version: 9.2 (9C40b)' -H 'Accept-Language: en-gb' -H 'X-Apple-I-MD-RINFO: 17106176' -H 'X-Request-ID: myRequestID' -H 'Accept: application/json' -H 'X-Apple-I-MD-M: myMDM' -H 'X-Apple-I-Locale: en_GB' -H 'X-Apple-I-MD: myIMD==' --compressed 'https://crashwebservices.apple.com/api/v2/crashpoint/816170169/com.myappbundleid/2.2.0/2.2.0/iOS/someOtherId?isBeta=false&startDate=2018-01-19&endDate=2018-02-02'

. , .

iTunes Connect , cookie . , , - .

, , - - , . . - -. , Spaceship, fastlane. , , , , .

0

Source: https://habr.com/ru/post/1690398/


All Articles