Services is awesome, and there are a few other modules out there that make it even more awesome. The problem is that they are hard to find because of the generic nature of their names.
It would be a great help if, on the Services module page, we could list modules related to Services. It is almost impossible to find these types of modules by Googling Drupal Services, because you end up with listings of Drupal shops, not modules related to Services.
I know of two:
Services Views
Services Rules*
I think it would be a great help to the community to list these, and any others like them, on the module page.
*Full Disclosure - Services Rules is mine. I think that it is worthy to be mentioned, but I'm not vying for self-promotion. I came across this difficulty of finding Services-related modules when working on a project. Between the default Services module, Services Views, and Services Rules, I feel that custom coding of services can be almost completely eliminated for most use cases. They are a powerful combination!
Comments
Comment #1
marcingy commentedThis is a good idea I have added those modules to the homepage and have made a note for people to add additional modules here. Marking as needs work because I know there are more out there.
Comment #2
Mar2zz commentedUser relationships has a submodule working with services
Comment #3
marcingy commentedAdded thank you :)
Comment #4
MD3 commentedThe following all have 2.x / XML_RPC style interfaces and should be marked as such:
User Relationships
Private Messages
I have updated code to make them 3.x services. I have submitted them in the issue ques and they are being community tested.
Also, please note that twitter_post does work with Services, but you have to know how to submit it properly when creating a new node. Documentation here:
http://drupal.org/node/1661404
Comment #5
d34dman commentedThis one depends on the REST server and ultimately on services
http://drupal.org/project/backbone
Comment #6
MD3 commentedJust found this one today!
Services Search
http://drupal.org/project/services_search
Allows you to search for content on your site without having to create custom code.
Comment #7
won commentedNodequeue, apparently.
Comment #8
marcingy commentedAdded I have left the old 2.x items off the list for now as 2.x is not supported any more so I we don't want to encourage usage.
Comment #9
joachim commentedhttp://drupal.org/project/clients
(But wouldn't it be nice if the maintainers of the related modules could do this themselves?)
Comment #10
nancydruhttp://drupal.org/project/bubbletimer 7.x-3.x
Comment #11
MD3 commentedJust found another one today! Geocoder has a services module:
http://drupal.org/project/geocoder 7.x-3.x
Comment #12
druvision commentedDeployment users the services module. See installation instructions
Comment #13
RamboLau commentedIn version 3.4, _services_sessions_authenticate_call() function missing POST,
$non_safe_method_called = !in_array($_SERVER['REQUEST_METHOD'], array('GET', 'HEAD', 'OPTIONS', 'TRACE'));
this shoud modified :
$non_safe_method_called = !in_array($_SERVER['REQUEST_METHOD'], array('GET', 'POST', 'HEAD', 'OPTIONS', 'TRACE'));
Comment #14
joachim commentedPlease file new issues for bugs!
Comment #15
ygerasimov commentedI think we should use https://drupal.org/node/750034 handbook page for listing of related modules. We can have a link on Project page to this one. Anyone can edit documentation pages so adding new projects is easy.
Comment #16
joachim commented+1
Comment #17
marcingy commentedDone added link to project page and moved missing items to linked page :)