how to get yii 1 post method working with postman

270 Views Asked by At

I am building restful api for android app using postman, but in postman only get method is working complete code is here https://github.com/arvindsinghs/GT/blob/master/apicontroller this method work if i sent parameters $atts = \Yii::$app->request->get();

method working

but if it changed it to post method and try to send paramerts in body it is not working $atts = \Yii::$app->request->post();

sending in form body

Any help is appreciated.

0

There are 0 best solutions below