I have this code give from a platform called wrike. Code:
curl -g -X GET -H 'Authorization: bearer <token_here>'
'https://www.wrike.com/api/v3/tasks?&fields=["metadata","attachmentCount",
"parentIds","sharedIds","superParentIds","description",
"briefDescription","hasAttachments","responsibleIds","recurrent",
"superTaskIds","subTaskIds","customFields","authorIds","dependencyIds"]'
My question is, how to turn this code into php? When executed the response from strike is in json. I don't need to know how to fetch the response. (already have created the code for it.) I just want to know how to use this code inside a php file. Thanks