Tagged Questions
1
vote
0answers
22 views
Wrapper implementation method to get user notifications in Stack Exchange?
I'm trying to build an app that requires me to get the user notifications for a particular Stack Exchange user.
Now, I'm trying to use Java to accomplish this and I came across this wrapper library: ...
2
votes
1answer
81 views
Using an existing Java oAuth implementation to access the Stack Exchange 2 Api?
I found the Scribe oAuth api and I was wondering how a call would work with the Stack Exchange API, since that uses oAuth. I'm sorta green when it comes to oAuth but I'm planning on writing an ...
3
votes
0answers
45 views
Is it OK to have a test account for a developing client?
I'm currently trying to implement an agorava component for Stackoverflow, and for testing purpose, i would like to create a test account, which would have one question asked, and would maybe send ...
0
votes
0answers
16 views
Java Http request on api.stackexchange with json response [duplicate]
Possible Duplicate:
Strange encoding for JSON output
I try to make a http request with java on the api stack exchange. But when I try to parse the Json response, it says that it is ...
0
votes
1answer
66 views
Coding error at open URL
Hi,
I have the following method to open a URL API
String c="";
URL direccionURL;
try {
direccionURL = new URL("http://api.stackoverflow.com/1.0/users/523725");
BufferedReader in = new ...