Tagged Questions
0
votes
1answer
62 views
“client_id not provided” when trying to obtain an access_token
So I'm trying to authenticate with the v2 API via oauth2. I have a code, so I'm POSTing to https://stackexchange.com/oauth/access_token and ideally get an access_token back.
Instead I get an ...
1
vote
1answer
326 views
API Implicit Authentication with Python
I am working on an desktop inbox notifier for StackOverflow, using the API with Python.
The script I am working on first logs the user in on StackExchange, and then requests authorisation for the ...
1
vote
0answers
42 views
Why user/top-answer-tags doesn't return any results?
I userd python to call
ansauthor=site.user(641)
in the cooking website.
then I used ansauthor.top-answer-tags
However, it doesn't return anything.
Then I called ansauthor.top-answer-tags.fetch()
It ...
1
vote
1answer
99 views
Non-verbatim search strings in py-stackexchange
Hello,
I am writing a python program with py-stackexchange that takes a query and returns a list of urls to questions with that query in the title. Here's the code:
#!c:/Python27/python.exe -u
...