Answer by Don Rolling for JSON object is null, even though feed is valid JSON
Also, if your dates aren't padded with zeros, then the events won't show. Ex. 2010-9-5 badEx. 2010-09-05 good
View ArticleAnswer by Jesse Dhillon for JSON object is null, even though feed is valid JSON
The api_response_format=jsonp:callback argument is supposed to be the name of a callback function defined in by your Javascript. So let's say I have a function called handleJson which is supposed to...
View ArticleAnswer by irishbuzz for JSON object is null, even though feed is valid JSON
The Disqus call is missing a callback function
View ArticleAnswer by Jim Grant for JSON object is null, even though feed is valid JSON
Copying the two URL's provided by yourself into a browser window, the DISQUS URL returns with an error, "Problem loading page".
View ArticleAnswer by Nick Craver for JSON object is null, even though feed is valid JSON
You can call it like this:$.ajax({ url: 'http://disqus.com/api/get_forum_posts/?user_api_key=MYKEY&forum_id=MYID&api_version=1.1&api_response_format=jsonp:myFunction', dataType:...
View ArticleJSON object is null, even though feed is valid JSON
Help, I'm confused.I just need to get a JSON object into my page. The URL is as follows:http://disqus.com/api/get_forum_posts/?user_api_key=MYKEY&forum_id=MYID&api_version=1.1If I use the...
View Article