I have to make a post request and have done the same using postman for testing. Now, the code base is using php and I have never used php ever before. Upon checking the code section in postman, I got this: The problem is that I have to pass dynamic values instead of firstname, lastname4 etc. The values I have
Tag: postman
Can you send text and file for the same param?
I am trying to send a request to my PHP Laravel API that would store as “content” both files and text, however when i send the POST request, only the file path gets saved in the database and the request returns an array that is empty, is the problem from postman or my API? Here is the code for my
Laravel request url with parameter problem with GET Method
I have a route in api.php which look like this: Route::get(‘auth/logout/{token}’,’UserController.php’; I tested this API endpoint using Postman with these configurations: Method: GET Params: key = …
PHP/Postman – How to populate the $Get
I am trying to do a Get request with Postman to a PHP script. But it doesn’t seem to populate the $_GET array? Why is this happening? http://localhost/download.php/game <?php $config = (object) ['…
Response from Postman shows 200, But Android returns 403
I was trying to develop an android app using Volley, The api I used to communicate is working fine when I checked with POSTMAN and retrieves 200 . But when I use the same API in my App its returns me 403 “Forbidden” <p〉You don’t have permission to access /API/checkPassOtp on this server.〈/p〉 Please find the screenshot. I have tried
Symfony2 app.php receiving POST request as GET app_dev.php works fine
So I’m creating a route that requires posting. The route is as follows: So I use postman to hit app_dev.php/myroute/login and I get the correct response that I am looking for, currently the page just returns “hello world”. Now when I change postman to just hit app.php/myroute/login I get an error saying: I’m really confused as to why it says