2017-11-07 3 views
1

HTML 웹 페이지에 판매 및 재무 보고서를 표시해야하며 보고서 데이터는 iTunesConnect에서 가져와야합니다.웹상에서 iTunesconnect 영업 및 재무 보고서를 표시하는 방법은 무엇입니까?

누군가이 문제를 어떻게 해결할 수 있습니까?

아래의 iTunes 이미지와 같은 데이터를 가져와야합니다.

enter image description here

+0

itunesconnect 보고서 API를 작동합니다 참조하십시오. 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 

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

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

관련 문제