문제

I'm trying to implement a search using reddit's api, but am not having much luck:

http://www.reddit.com/search.json?q=ferrari?jsonp=?

It's returning some json formatted text but no results.. If I search "cars", it returns 2 results, and the rest of my code won't recognize the objects. (Plus, I know there's more than 2 results for cars). Any idea on how to modify the URL?

도움이 되었습니까?

해결책

Your URL looks wrong. I think you used a question mark instead of an amp to separate request variables.

I tried using http://www.reddit.com/search.json?q=ferrari and I got a lot of results in JSON format.

This will allow you to do the most basic search for reddit posts.

You can add other parameters, described on the reddit API page : http://www.reddit.com/dev/api#GET_search. You can also limit your search to one subreddit.

For example, to get the same results, sort by newest : http://www.reddit.com/search.json?q=ferrari&sort=new

다른 팁

It does work for me like so :

http://www.reddit.com/search.json?q=rest&jsonp=callback

and there is limit parameter which by default is 25 and the maximum is 100

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top