2017-11-07 13 views
1

私はHTML Webページに販売レポートと財務レポートを表示する必要があり、レポートデータはiTunesConnectから取得する必要があります。iTunesconnectの販売および財務レポートをWeb上で表示するには?

誰かがこれをどのように達成することができるか説明してください。

以下のようなデータを取得する必要があります。

enter image description here

+0

を参照してください。 itunesconnectからのデータを使用して独自のhtmlレイアウトを設計する必要があります。ここに提供されているソリューションを参照してください。https://stackoverflow.com/questions/1619172/itunes-connect-api –

+1

JARファイルとプロパティファイルを試しましたか? – Hasya

+0

さて、私にチェックさせてください。 – iMHitesh

答えて

1

あなたはあなたのXMLやCSV形式のデータを提供し、アップルのレポーター技術を使用することができます。

以下のコマンドを実行する必要があります。(1)Reporter.properties及び(2)Reporter.jarファイルの使用

(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 

。 Reporter.propertiesを慎重に設定してください。以下のように。

UserId= your apple account email address 

Password= your apple account password 

Mode=Robot.xml 

itunesconnectレポートAPIが動作するはず

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

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

関連する問題