Posts by Rodrigo Santos • 11 points
3 posts
-
0
votes2
answers236
viewsA: PASSING PARAMETERS VIA JSON ON LARAVEL
public function createUser(){ $this->post("api/license-manager/users", [ //CHAMADA DIRETA - PASSANDO EMAIL E NAME "email" => "[email protected]", "name" => "Fabio Teste 2" //A CHAMADA…
-
0
votes2
answers236
viewsQ: PASSING PARAMETERS VIA JSON ON LARAVEL
Good morning Everybody. I’m brand new in PHP and need a help with an api implementation. I basically have a midleware that does a get or post on a third party’s api. Then, a user gets a get at a url…
-
1
votes1
answer589
viewsQ: How to receive an array in the body of a nodejs route
Good morning, guys. I’m having a really hard time. I started a week ago studying in nodejs, so I’m well. I have a code that returns an object in json format to me and I would like to create a page…