Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Help with SSO
Dog2puppy
New
I was looking at the SSO section for Vanilla, but I'm confused about the JSONP part. Can anyone help me with this?
0
Comments
What part specifically are you having trouble with?
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
I don't understand what JSONP is or how to use it.
It's JSON formatted as a Javascript function.
If this is your JSON string:
{"JSON":true}
This is how to format it as JSONP with callback "example":
example({"JSON":true});
Okay. I think I'm starting to get the hang of it.