Login with your social network:
Python script to demonstrate testimonials API usage
Sign up FREE & get 250 points
#!/usr/bin/python
import urllib
import urllib2
import time
import json
# Set the url to testimonials
url = "http://www.points2shop.com/webservice/testimonials"
# This key is required for all API REST calls and can be found in details of your application
p2s_api_key = '6586df0367b681497ef77437f0c71c10ae38302e'
# 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
testimonials = json.loads(result.read())
for testimonial in testimonials:
print testimonial['submitted_date']
except urllib2.HTTPError, e:
print e.getcode()
print e.read()
REST_API_Usage