Posts by Josiel • 63 points
4 posts
-
1
votes0
answers118
viewsQ: React + React Router + Laravel => error while performing refresh or insert url manually in browser
I’m using React for the front of an application in Windows. In React, through the React-router I am accessing components dynamically through the parameters passed via url by the router link. If you…
-
0
votes0
answers25
viewsQ: Repository not found git mac terminal
On the Mac after you first use the github user and password data in the terminal, that data is preconfigured for future use. If I try to clone or push with another user it is a mistake. It usually…
-
3
votes2
answers3638
viewsQ: How to turn this Curl / PUT command into php?
How do I transpose this Curl code to send it in a PHP file? curl -X PUT -H "Content-Type: application/json" -H "Accept: application/json" -d { "status":"paused" }…
-
2
votes1
answer2199
viewsQ: What does (-X,-H,-d) mean for this command (Curl -X POST -H "Content-Type: application/json" -d) and how to do it for the php file?
curl -X POST -H "Content-Type: application/json" -d I need to do this command and send a JSON to a certain API that will return a response but I don’t know how the structure of this would look in a…