Posts by Diego Damasio • 3 points
2 posts
-
0
votes2
answers235
viewsA: How to take a string returned from the internal execution of a URL to turn it into a JSON object?
Final solution guys! Using Curl $url = 'https://sandbox.boletobancario.com/boletofacil/integration/api/v1/fetch-payment-details?paymentToken='.$paymentToken; $ch = curl_init(); curl_setopt( $ch,…
-
0
votes2
answers235
viewsQ: How to take a string returned from the internal execution of a URL to turn it into a JSON object?
I need to execute this URL internally on the server. The result of the execution generates a string in JSON format: {"success":false,"errorMessage":"Token inválido"} How to take the string returned…