“Your API key is not valid on this domain” when calling Disqus from WP7
问题 I'm trying to access the REST Disqus API using the following url: http://disqus.com/api/3.0/threads/listPosts.json ?api_key=myKey &forum=myForum &thread:ident=myIdent When I go to the url in Chrome, it works fine. When I try to download it in WebClient , I have difficulty: WebClient data = new WebClient(); Uri queryUri = new Uri(DisqusQuery + ident, UriKind.Absolute); data.DownloadStringCompleted += new DownloadStringCompletedEventHandler(onDownloadCompleted); data.DownloadStringAsync