Https redirect from oauth
I use box.com api. This api use oauth authorization ask https url for redirect. Appery doesn't supprot https for application. Could you help with it. May be some ideas?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I use box.com api. This api use oauth authorization ask https url for redirect. Appery doesn't supprot https for application. Could you help with it. May be some ideas?
Hello! Working on it.
Hi Ricki,
Appery should support HTTPS. We'll test this. For now, there are two possible workarounds for you.
1: If you open page via HTTPS then it will be broken (neither CSS, nor JS). You should change something in the editor and refresh HTTPS page. It will be recreated and open properly as HTTPS.
2: You can create invisible Panel component with the following HTML code:
code<script>
if(location.protocol == "https:") {
location = location.href.replace('https', 'http');
}
</script>/codeThen you'll be redirected to HTTP page.
Great. It works. Thank you very much.