2017-11-07 2 views
1

Ich muss Verkaufs- und Finanzbericht auf HTML-Webseite anzeigen, Berichtsdaten sollten von iTunesConnect stammen.Wie zeigt iTunes den Umsatz- und Finanzreport im Internet an?

Kann mir bitte jemand beschreiben, wie ich das erreichen kann?

Benötigen Sie Daten wie unter iTunes Bild.

enter image description here

+0

iTunesConnect Bericht api funktionieren sollte. Sie müssen Ihr eigenes HTML-Layout mit Daten von itunesconnect entwerfen. Weitere Informationen finden Sie unter https://stackoverflow.com/questions/1619172/itunes-connect-api –

+1

Haben Sie versucht, JAR- und Property-Dateien zu verwenden? – Hasya

+0

Okay, lass mich nachsehen. – iMHitesh

Antwort

1

Sie können Apple-Reporter Technik verwenden, die Sie Daten in XML und CSV-Format zur Verfügung stellt.

Sie müssen die folgenden Befehle befolgen.

(1) Lion:Reporter bv$ java -jar Reporter.jar p=Reporter.properties m=Robot.XML Finance.getReport AppleID, US, Financial, 2016, 10 

Successfully downloaded AppleID_0716_US.txt.gz 
(2) Lion:Reporter bv$ java -jar Reporter.jar p=Reporter.properties m=Robot.XML Sales.getReport AppleID, US, Financial, 2016, 10 

201 
Invalid report type specified. Valid values include: Sales, Newsstand, Pre-order, Cloud, Event, Customer, Content, Station, Control, amEvent, amContent, amControl, amStreams, Subscription and SubscriptionEvent. 
(3) Lion:Reporter bv$ java -jar Reporter.jar p=Reporter.properties m=Robot.XML Finance.getReport AppleID, US, Sales, 2016, 10 

301 
Invalid report type specified. Valid values include: Financial, Match, Radio, RadioSummary, AppleMusic, AppleMusicSummary, News, and BeatsRadio. 
(4) java -jar Reporter.jar p=Reporter.properties m=Robot.XML Sales.getReport AppleID, Sales, Summary, Daily, 20162811 

Mit (1) Reporter.properties und (2) reporter.jar Dateien. Stellen Sie sicher, dass Sie Reporter.properties sorgfältig konfigurieren. Wie unten.

UserId= your apple account email address 

Password= your apple account password 

Mode=Robot.xml 

Siehe

https://help.apple.com/itc/appsreporterguide/#/itcbe21ac7db

https://github.com/hasyapanchasara/Apple-Reporter

Verwandte Themen