Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
Is your question regarding retrieving the posted data or (if you already have it) manipulating the string? – That1Guy Jan 9 at 17:08
@That1Guy I am interested in how to retrieve the posted data – zch Jan 9 at 22:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.