Page 1 of 1

Https redirect from oauth

Posted: Wed Apr 24, 2013 12:10 pm
by Ricki Ricardo

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?


Https redirect from oauth

Posted: Wed Apr 24, 2013 1:56 pm
by Maryna Brodina

Hello! Working on it.


Https redirect from oauth

Posted: Wed Apr 24, 2013 3:08 pm
by Kateryna Grynko

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&#46;protocol == "https:") {
location = location&#46;href&#46;replace('https', 'http');
}
<&#47;script>/codeThen you'll be redirected to HTTP page.


Https redirect from oauth

Posted: Thu Apr 25, 2013 8:16 am
by Ricki Ricardo

Great. It works. Thank you very much.