我们是这样做的:
第 1 步:获取 p12 文件/证书
从https://console.developers.google.com/下载p12文件
“APIs & auth / Credentials”标签。
第 2 步:将 p12 文件转换为 DER 格式
找到一台打开并使用终端连接的 Linux 计算机
命令:
openssl pkcs12 -in <filename.p12> -nodes -nocerts > <filename.pem>
# The current Google password for the p12 file is `notasecret`
openssl rsa -in <filename.pem> -inform PEM -out <filename.der> -outform DER
第 3 步:将 DER 文件转换为 base64 编码字符串
Python 控制台:
private_key = open(‘<filename.der>’, 'rb').read()
print private_key.encode('base64')
复制并粘贴到应用引擎脚本中。
第 4 步:在 AppEngine 中启用 PyCrypto
app.yaml 必须有一行才能启用 PyCrypto:
- name: pycrypto
version: latest
第 5 步:创建签名 URL 的 Python 代码
import Crypto.Hash.SHA256 as SHA256
import Crypto.PublicKey.RSA as RSA
import Crypto.Signature.PKCS1_v1_5 as PKCS1_v1_5
der_key = “””<copy-paste-the-base64-converted-key>”””.decode('base64')
bucket = <your cloud storage bucket name (default is same as app id)>
filename = <path + filename>
valid_seconds = 5
expiration = int(time.time() + valid_seconds)
signature_string = 'GET\n\n\n%s\n' % expiration
signature_string += bucket + filename
# Sign the string with the RSA key.
signature = ''
try:
start_key_time = datetime.datetime.utcnow()
rsa_key = RSA.importKey(der_key, passphrase='notasecret')
#objects['rsa_key'] = rsa_key.exportKey('PEM').encode('base64')
signer = PKCS1_v1_5.new(rsa_key)
signature_hash = SHA256.new(signature_string)
signature_bytes = signer.sign(signature_hash)
signature = signature_bytes.encode('base64')
objects['sig'] = signature
except:
objects['PEM_error'] = traceback.format_exc()
try:
# Storage
STORAGE_CLIENT_EMAIL = <Client Email from Credentials console: Service Account Email Address>
STORAGE_API_ENDPOINT = 'https://storage.googleapis.com'
# Set the query parameters.
query_params = {'GoogleAccessId': STORAGE_CLIENT_EMAIL,
'Expires': str(expiration),
'Signature': signature}
# This is the signed URL:
download_href = STORAGE_API_ENDPOINT + bucket + filename + '?' + urllib.urlencode(query_params)
except:
pass
来源
How to get the p12 file.
Signing instructions.
Inspiration for how to sign the url.