curl は正常に実行できますが、mailchimp API の Python リクエストでは機能しません。エラーが発生します。like urllib2.HTTPError: HTTP Error 401: Unauthorized
カール
curl --request POST \
--url 'https://us9.api.mailchimp.com/3.0/lists' \
--user 'anystring:6a983664930fc8ba1eecdsdf334344f40-us9' \
--header 'content-type: application/json' \
--data '{"name":"My test","contact":{"company":"Cool","address1":"Awesome place","city":"Lanka","state":"MH","zip":"43472","country":"IN","phone":""},"permission_reminder":"You'\''re receiving this email because you signed up.","campaign_defaults":{"from_name":"VD","from_email":"hey@sdfsdf.com","subject":"","language":"en"},"email_type_option":true}' \
--include
Python リクエスト:
import urllib2
import json
import requests
url = 'https://us9.api.mailchimp.com/3.0/lists/'
all_params={"user":"my_username:6a983664930fc8ba1eecd1d5d68f4f40-us9",
"name":"My test",
"contact":{"company":"Cool","address1":"Awesome place","city":"Lanka","state":"MH","zip":"43472","country":"IN","phone":""},"permission_reminder":"You'\''re receiving this email because you signed up.","campaign_defaults":{"from_name":"VD","from_email":"hey@sdfsdf.com","subject":"","language":"en"},
"email_type_option":'true'}
post_data = urllib2.quote(json.dumps(all_params))
headers = {'Content-Type': 'application/json'}
request = urllib2.Request(url, post_data, headers)
response = urllib2.urlopen(request)
Converting cURL to Python Requests を参照しましたが、機能しませんでした。