初めてのPythonスクリプト中の.jsonファイルを通って、私は何を解釈欠場場合、私はとても残念かなり経験の浅いよ:)ループ私はウェブサイト上でアカウントを作成することができ、スクリプトを持ってここに
、そのユーザーの資格情報を取得しますconfig.jsonファイルから取得します。唯一の問題は、実行ごとに1つのアカウントしか作成できないことです。このスクリプトをconfig.jsonファイルで囲まれた複数のユーザー資格情報を実行するように設定する必要はありますか?以下は
PYコード:以下
import json
import requests
s = requests.Session()
headers = {
'Content-Type': 'application/json',
'X-API-Key': '--xxx--',
'Accept': '*',
'X-Debug': '1',
'User-Agent': 'FootPatrol/2.0 CFNetwork/808.2.16 Darwin/16.3.0',
'Accept-Encoding': 'gzip, deflate',
'MESH-Commcerce-Channel': 'iphone-app'
}
with open("config.json") as jsons:
config = json.load(jsons)
req = s.post("https://commerce.mesh.mx/stores/footpatrol/customers",
headers=headers, json=config)
print(req.text)
config.json:
{
"phone": "07901893000",
"password": "passwprd3213",
"firstName": "Jon",
"gender": "",
"addresses": [
{
"locale": "gb",
"country": "United Kingdom",
"address1": "54 yellow Road",
"town": "Oxford",
"postcode": "OX1 1SW",
"isPrimaryBillingAddress": true,
"isPrimaryAddress": true
}
],
"title": "",
"email": "[email protected]",
"isGuest": false,
"lastName": "Thomas"
},
多くの感謝:)
APIキーを削除して新しいAPIキーを生成したい場合があります。 – voiDnyx
こんにちは、APIキーは、常に同じままです。私は一度に200個のアカウントを作成しようとしています。問題は、一度に1つしか作成できない瞬間です。 –
はい、あなたのAPIキーをここに掲示すると、あなたのキーがそれを使ってあなたの名前で悪いことをするのに使うことができます。 ;) – voiDnyx