webrpc and php

Dictionary<string, object> parameters = new Dictionary<string, object>(); parameters.Add("name", "Nico Yazawa"); parameters.Add("age", "17"); PhotonNetwork.WebRpc("webhook", parameters);Hello,
I want to know how do you retrieve the parameters sent with php ?
0
Comments
Are you asking on how to retrieve WebRPC response from PUN?
If so then you have the callback for that:
OnWebRpcResponse(OperationResponse response)
You just need to return JSON in this format:
{ResultCode:0, Data:data}
You may try searching the forum or Unity forums for WebRPC implementations in PHP.
We do not have a sample or demo for this sorry.