2013-07-19 701 views
1

我昨天收到一封來自Apple的電子郵件,聲稱現在可以使用名爲Transporter的命令行工具交付App Store元數據本地化。iTMSTransporter失敗並顯示錯誤-20101

我已經從iTunes下載的連接和iTunes_Store_Transporter_Quick_Start_Guide_v2.pdf遵循的一個應用程序的元數據的簡單查詢的例子:

To initiate lookup mode, use the following command: 
$ iTMSTransporter -m lookupMetadata -u [iTunes Connect user name] 
        -p [iTunes Connect password] -vendor_id [App SKU] 
        -destination [destination path for App Store Package] 

不過,雖然我的登錄憑據,輸入的所有其它信息是正確的,我總是收到以下錯誤:

[2013-07-19 14:34:40 MESZ] <main> DBG-X: parameter Errors = [Directory Services reported the following error: Your Apple ID or password was entered incorrectly. (-20101)] 
[2013-07-19 14:34:40 MESZ] <main> ERROR: Apple's web service operation was not successful 
[2013-07-19 14:34:40 MESZ] <main> ERROR: An error occurred while looking up the metadata. 
[2013-07-19 14:34:40 MESZ] <main> ERROR: Directory Services reported the following error: Your Apple ID or password was entered incorrectly. (-20101) 
[2013-07-19 14:34:40 MESZ] <main> DBG-X: The error code is: -20101 

信息:我的密碼包含特殊字符。因此,我試圖通過帶和不帶引號的密碼。

+0

有人能有1500+的聲譽,請創建並添加標籤 'itmstransporter'?謝謝。 – Tafkadasoh

回答

0

作爲解決方法,它爲我工作,以刪除密碼參數。然後iTMSTransporter會要求在命令行輸入密碼。這不是一個真正的解決方案,因爲您不能將其用於自動化腳本(iTMSTransporter旨在用於此腳本)。但是,如果不經常使用,這可能就足夠了。

0

你在使用什麼操作系統,你的密碼包含什麼特殊字符?如果您使用的是OS X,請使用單引號(例如'password'不是"password"

如果你打算使用iTMSTransporter很多,我會建議
using this program

+0

單引號也無效,但感謝您的建議。我正在使用Mac OS 10.8.4和iTMSTransporter版本1.7.8.1。而我的密碼包含'$'字符。 – Tafkadasoh

0

@Tafkadasoh - 解決方法對我來說也很好,我現在可以連接並獲取元數據包。

乾杯!

+0

您好Tracedog,歡迎在StackOverflow!我很高興我的解決方法幫助你。但請注意,StackOverflow中的答案只應包含有助於解決原始問題的信息。對於其他信息,我使用評論,不幸的是需要50 [聲望](http://stackoverflow.com/help/whats-reputation)。這些應該用[這種方式](http://stackoverflow.com/help/privileges/comment)。信譽給你[某些特權](http://stackoverflow.com/help/privileges)。獲得第一特權需要一些時間,但請繼續提供有意義的帖子。 – Tafkadasoh

2

@Tafkadasoh這是導致問題的美元符號。由於$字符是爲unix中的不同類型的變量保留的,因此您必須將其轉義。

而不是

-p 'Pass$123' 

使用

-p 'Pass\$123' 
+0

感謝您的回覆!不幸的是,我不再是iOS設備,所以我無法測試它。但是,嘿,你可能是對的,因爲我的密碼包括一個$符號... – Tafkadasoh

相關問題