參考資料: http://code.google.com/intl/zh-TW/apis/checkout/developer/index.html
POST URL: https://checkout.google.com/api/checkout/v2/reports/Merchant/{merchantID}
在抓取 Report 前, 先說明如何找到後面程式需要的 Merchant ID 和 Merchant Key.
2011/11/03
2011/11/01
[Java] 讀取 App Store 的 Sales and Trends Report
參考文件: iTunes Connect Sales and Trends Guide (PDF)
在第三章 [Downloading, Reading and Understanding Sales and Trends Data] 有提到一個 Auto-Ingest Tool.
因為此 class 可在網路上找到 Source Code, 所以就能瞭解此程式到 App Store 抓 Report 的做法.
此程式的關鍵就在於 Apple 有放出一個 URL (https://reportingitc.apple.com/autoingestion.tft) 讓需要的人可透過簡單的 HTTP POST 來取得一個 .gz 檔.
取得此 .gz 檔後, 可再自行解壓縮以得到一個 .txt 的 CSV 資料檔, 最後再將此 CSV 格式檔匯入資料庫中.
在第三章 [Downloading, Reading and Understanding Sales and Trends Data] 有提到一個 Auto-Ingest Tool.
因為此 class 可在網路上找到 Source Code, 所以就能瞭解此程式到 App Store 抓 Report 的做法.
此程式的關鍵就在於 Apple 有放出一個 URL (https://reportingitc.apple.com/autoingestion.tft) 讓需要的人可透過簡單的 HTTP POST 來取得一個 .gz 檔.
取得此 .gz 檔後, 可再自行解壓縮以得到一個 .txt 的 CSV 資料檔, 最後再將此 CSV 格式檔匯入資料庫中.
2011/09/07
[Others] 新版的 Microsoft Download Manager
以前下載 MSDN 的軟體時, 會自動啟動 File Transfer Manager (FTM).
不過這兩天要下載時, FTM都不會被啟動, 而是直接透過瀏覽器進行下載. (應該是因為我用了 IE9)
且由於檔案動輒幾 G 的大小, 常常斷線又沒續傳, 實在是頗傷腦筋.
後來查到 Microsoft 出了一版新的 Download Manager. (http://www.microsoft.com/download/en/details.aspx?id=26214)
不過這兩天要下載時, FTM都不會被啟動, 而是直接透過瀏覽器進行下載. (應該是因為我用了 IE9)
且由於檔案動輒幾 G 的大小, 常常斷線又沒續傳, 實在是頗傷腦筋.
後來查到 Microsoft 出了一版新的 Download Manager. (http://www.microsoft.com/download/en/details.aspx?id=26214)
2011/08/18
[Java] Apache 的 Commons Configuration 入門
- 開發工具: Netbeans7.0 (http://netbeans.org/)
- Web Server: Tomcat5.5 (http://tomcat.apache.org/)
- 所需套件:
- commons-configuration-1.6 (http://commons.apache.org/configuration/)
- commons-lang-2.6 (http://commons.apache.org/lang/)
注意: 不要用到 commons-lang3 以上, 因為 namespace 改變了. (後續說明) - commons-collections-3.2.1 (http://commons.apache.org/collections/)
- commons-logging (http://commons.apache.org/logging/)
因為 Tomcat 已有這個套件, 所以不用特別加入.
2011/04/06
[C#][XPath] 模擬 XPath 的 max 與 min
在 XPath 中, 有兩個函式感覺會很常用, 但 C# 中卻沒 support. 那就是 max() 和 min().
少了這兩個函式, 每次想找 xml 資料中的最大/最小值, 就只能用 Linq 或是 Select 出所有標籤後, 在程式中去一個個比對.
其實 XPath 只要轉個彎, 就能做出類似的功能.
少了這兩個函式, 每次想找 xml 資料中的最大/最小值, 就只能用 Linq 或是 Select 出所有標籤後, 在程式中去一個個比對.
其實 XPath 只要轉個彎, 就能做出類似的功能.
訂閱:
文章 (Atom)