tags:

views:

37

answers:

1

I have a module that will be using some restfulness and i'd like to know if drupal's menu router handles PUT requests without problem...?

+3  A: 

After doing some research i found that Nothing stops you from handling PUT requests on Drupal. Actually i looked at the code in rest server module and it seems to handle it without problem. Just inspect the php $_SERVER['REQUEST_METHOD'] as you'd normally do.

Note: Answered my own question and keeping it as per @Henrik Opel comment

redben