Page 1 of 1
Mandatory parameter tiggzi-proxy-url is missing
Posted: Wed Dec 19, 2012 1:44 pm
by Ricki Ricardo
I tried made authorazation like show in example
http://help.gotiggr.com/documentation....
But when I try repcoduce step 4 on my app I have error "Mandatory parameter tiggzi-proxy-url is missing". Could you help me with it?
my url
http://project.tiggzi.com/rest/tunnel...***
I replace talis ***
Mandatory parameter tiggzi-proxy-url is missing
Posted: Wed Dec 19, 2012 1:58 pm
by Kateryna Grynko
Hello!
We will test it and I'll update.
Mandatory parameter tiggzi-proxy-url is missing
Posted: Wed Dec 19, 2012 5:01 pm
by maxkatz
[quote:]
my url
http://project.tiggzi.com/rest/tunnel...***
I replace talis ***
[/quote]
The URL is incorrect, you should redirect back to an actual page.
Mandatory parameter tiggzi-proxy-url is missing
Posted: Wed Dec 19, 2012 7:35 pm
by Ricki Ricardo
Sory, what does it mean actual page? I try to login on Oscar_results.html and write this page to callback.
Mandatory parameter tiggzi-proxy-url is missing
Posted: Wed Dec 19, 2012 8:12 pm
by maxkatz
Mandatory parameter tiggzi-proxy-url is missing
Posted: Thu Dec 20, 2012 9:36 am
by Ricki Ricardo
Do you mean my redirect_uri must be differnt? How I can know it?
I added image.
Error reproduce whe I invoke the service.
Mandatory parameter tiggzi-proxy-url is missing
Posted: Thu Dec 20, 2012 10:14 am
by Kateryna Grynko
Hello!
On step "3. The user is redirected back to your app" you have to change code
codeconsole.log(vars.code);
localStorage.setItem('code', vars.code + '_');/code to
codeconsole.log(vars.code);
var codeLen = vars.code.length;
localStorage.setItem('code', vars.code.substr(0, codeLen-2));/codeto have your app working.
If you use Chrome you can see detail error description on F12 - Network tab:
Mandatory parameter tiggzi-proxy-url is missing
Posted: Thu Dec 20, 2012 12:21 pm
by Ricki Ricardo
Great! It's working. Thank you very much.
Mandatory parameter tiggzi-proxy-url is missing
Posted: Thu Dec 20, 2012 12:22 pm
by Kateryna Grynko
Mandatory parameter tiggzi-proxy-url is missing
Posted: Sun Mar 17, 2013 6:04 pm
by James3020840
This substr to remove the "#_" from code also fixed the Singly plugin for facebook. Thanks.