转自: https://fann.im/blog/2018/05/15/app-store-front-code/
X-Apple-Store-Front header is needed to scrape in App Store.
// 29 or 26 or 9
CN 143465-19,29
US 143441-1,29
JP 143462-9,29
KR 143466-13,29
转自: https://fann.im/blog/2018/05/15/app-store-front-code/
X-Apple-Store-Front header is needed to scrape in App Store.
// 29 or 26 or 9
CN 143465-19,29
US 143441-1,29
JP 143462-9,29
KR 143466-13,29
| [ | |
| { | |
| "name": "Algeria", | |
| "code": "DZ", | |
| "storefrontId": 143563 | |
| }, | |
| { | |
| "name": "Angola", | |
| "code": "AO", | |
| "storefrontId": 143564 |
| { | |
| "storePlatformData": { | |
| "product-dv-product": { | |
| "results": { | |
| "389801252": { | |
| "artwork": [ | |
| { | |
| "width": 170, | |
| "height": 170, | |
| "url": "https://is2-ssl.mzstatic.com/image/thumb/Purple118/v4/de/b9/5b/deb95b99-0b17-7713-9a0e-99344ebf4e55/Prod-1x_U007emarketing-85-220-0-5.png/170x170bb.png" |
| # %W% %E% | |
| # | |
| # Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved. | |
| # | |
| # Version | |
| version=1 | |
| # Component Font Mappings |
| 1、下载PostgreSQL源码包,放在任意目录 | |
| http://www.postgresql.org/ftp/source/v9.0.4/ | |
| 2、解压文件 | |
| #tar zxvf postgresql-9.1.3.tar.gz | |
| #cd postgresql-9.1.3 | |
| 3.准备安装前需要确认的库(readline,zlib,openssl),如果没有安装,则运行下面命令进行安装: | |
| #yum install readline-devel | |
| #yum install zlib-devel |
| worker_processes 2; | |
| error_log /var/log/nginx/error.log; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| use epoll; | |
| } |
| #!/bin/bash | |
| # | |
| # Install Postgresql9 From Source On Ubuntu 10.04 (Slicehost) | |
| # Execute as root | |
| # | |
| # Author : Carlos Jacobs | |
| # Date : 27 Sep 2010 | |
| sudo aptitude install libreadline6 libreadline6-dev | |
| sudo aptitude install zlib1g zlib1g-dev |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: redis-server | |
| # Required-Start: $syslog | |
| # Required-Stop: $syslog | |
| # Should-Start: $local_fs | |
| # Should-Stop: $local_fs | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: redis-server - Persistent key-value db |