Hey all i need to convert the POST message to the URL to run the openurl so the browser can make the call instead of the unitywebrequest method - basically i am creating OPENID CONNECT unity client so that i can do single sign on via web calls - this should: launch the web browser with the appropriate rest data and i will have a wait for a response on the unity client for the response back…basically i have all the post data properly configured but the problem is unitywebrequest doesnt launch browsers and rightly so - what i need to do is have the default browser call the request and im not sure how i would do this besides converting the URL / POST Data into a url string - any suggestions?
Maybe consider something like this. It will let you open the page inside the app and then you can run whatever code you want on the webpage. The plugin includes callbacks so you can get responses back. We actually use it for some similar type things.
Thanks but that is only for iOS and android
Would be helpful to say what platform you are building for in case someone has something else for that particular platform that may help.
Opp was looking for all platforms …was focused on a web based approach which why I didn’t mention the platform sorry!
I got something going though…2 options I have found which should work for any platform…1. open a web browser default installed calling the rest URL and use a built in webserver to handle the call back from the provider , prompt the user to close and go back to the app…or 2.an Embedded browser within unity which is your suggestion, is trickier but would allow better feel where the user wouldn’t need to manually go back…there are the plugins …open source even …gonna try them out …problem is it’s gonna take 1 plugin for Windows Mac Linux and another for Android iOS but will see how that rolls…I got the consent portion working already just gotta figure out how to get the built in webserver to receive the request handleand that data. Thanks for the help brownce!