Help with SSO

I was looking at the SSO section for Vanilla, but I'm confused about the JSONP part. Can anyone help me with this?
0
I was looking at the SSO section for Vanilla, but I'm confused about the JSONP part. Can anyone help me with this?
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.