New answers tagged support
1
Yes, the sites path does not filter results on site_type. But the good news is, the path accepts a pagesize of 999, so you can get all the results at once.
Then you must filter the results in your app. Here's what it looks like in jQuery:
$.ajax ( {
type: 'GET',
url: ...
0
You would use the inname parameter of the users path. For example this gets users with marcamillion in their name, on Stack Overflow.
Note that the filter parameter controls what fields are returned, not the content of those fields.
I don't use Serel (or much Ruby), but the syntax is probably:
Serel::User.inname('marcamillion').get
Or, with some more ...
1
I think you're looking for:
/users/{id}/tags/{tags}/top-answers
/users/{id}/tags/{tags}/top-questions
Top 50 recent answers are included