The following code exists:
$client = new Zend_Rest_Client('http://test.com/rest');
$client->sendData('data');
if i send via GET( echo $client->get()) it works correctly
if through POST (echo $client->post()), I get the following message "No Method Specified."
How to send a message using Zend_Rest_Client?
source
share