Login with your social network:
Python Script To Demonstrate Offers API Usage
Sign up FREE & get 250 points
#!/usr/bin/python
import urllib
import urllib2
import time
import json
# Set the url to offers
url = "http://www.points2shop.com/webservice/offers"
# This key is required for all API REST calls and can be found in details of your application
p2s_api_key = '344a23c48d3fc934ea28a15379ea7bd6957e9054'
# Initialize the request
request = urllib2.Request(url = url)
# Set key to header
request.add_header('X-Points2shop-Api-Key', p2s_api_key)
try:
# Make the request
result = urllib2.urlopen(request)
# decode the JSON
offers = json.loads(result.read())
for offer in offers:
print offer
except urllib2.HTTPError, e:
print e.getcode()
print e.read()
REST_API_Usage