I am exploring Python, and I want to try reading data users programmatically POST to my webpage through JSON.
For instance, I have figured out that a user can post JSON data to a webpage as follows using urllib2:
import urllib2
import json
jdata = json.dumps({"username":"...", "password":"..."})
urllib2.urlopen("http://www.mywebsite.com/login.json", jdata)
(complements of this great question: How do I send a POST request as a JSON?)
However, I now want to craft the /login.json page people can post to, but I do not know where to begin as far as reading the JSON posted. Any recommended tutorials or documentation worth exploring would be greatly appreciated. Many thanks in advance.
EDIT: Another example could be the Bit.ly API in how the page reads parameters:
import requests
import json
query_params = {'access_token': 'API_KEY',
'link': 'http://bit.ly/YLRxli'}
endpoint = 'https://api-ssl.bitly.com/v3/link/category'
response = requests.get(endpoint, params= query_params)
So with that in mind, I guess my question comes down to what is the API page, bitly.com/v3/link/category doing to read the parameters contained within query_params?