3

Client request url with some POST data. How can I retrieve that variable in magento?

I have to retrieve that in JSON format variable and do the operation using those variables.

1
  • i am using OAUTH authentication for my API. Commented Aug 19, 2016 at 11:54

1 Answer 1

2

We insert our JSON data in request body in this form:

{ "firstname":"vijay", "secondname":"bokka", "email":"[email protected]" } 

As part of API implementation one method will be invoked when API URL is trigged.

To that method interface write:

apiinvokedmethod($firstname, $secondname, $email) { } 

You can access value of $firstname automatically in the class where you implemented this interface class.

NOTE: The value of key in json and name of the method parameter should be equal.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.