I can easily get the feeds of stackoverflow like this
But I can't feeds of bicycles in the same way WHY?
|
I can easily get the feeds of stackoverflow like this But I can't feeds of bicycles in the same way WHY? |
|||
|
|
|
You need to append
Edit: here is the relevant section of Stack2RSS's source code that constructs the API URL to query based on the site parameter you supply:
// Make sure the site has a TLD domain in it (for backward compatibility,
// we insert '.com' if there isn't one. Also modify the $_GET variable to include it.
if(substr($site, -4) != '.com')
{
$site .= '.com';
$_GET['site'] .= '.com';
}
// Unless the site is stackauth, we prepend 'api.' to the URL
$prepend = ($site == 'stackauth.com')?'':'api.';
// Now construct the URL to return
return "http://{$prepend}{$site}/{$version}/{$method}?" . implode('&', $parameters);
So basically what's happening here is that Stack2RSS first checks the site parameter you supply to see if it ends in
The |
|||||
|
|
I'm not sure why, but that service seems to only work with the more high-traffic portions of stackexchange:
I'll ask over on WebApps and see if anyone knows. |
|||
|
|