I don't know whether what I want is possible at all; it does seem like a I have a plausible use case though.
I have an (untrusted) client side app A, which did a facebook connect through javascript, say to Sam's account. This app talks to another (untrusted) client side app B (app B runs on another user's computer and is facebook connected to another facebook account, Paul's). App A needs to tell app B that it acts on behalf of Sam, how can it do this in a secure way?
- Obviously if A just sends "Hi, I'm Sam", app B doesn't know whether app A is lying or not
- App A might send its facebook access token, and app B can call https://graph.facebook.com/me with that token, and know for sure that A isn't lying. However, now B has A's access token, and can make all sort of facebook calls on Sam's behalf. Definitely not what we want
- I would like to avoid having to build some trusted server, where for instance A sends its access token, and B then gets a trusted reply of who A is
- I guess in theory B could ask A to post something to facebook, and then check for this content, but this has all sorts of side effects that don't seem desirable
I'm just wondering whether there is anything out there that could solve this. In theory, B could send A a challenge, A uses its token to sign it, send it back, and B checks the signature with facebook (if this were possible); or B sends a challenge, A uses its access token to have facebook sign the challenge (again, if possible), send the result back to B. Or perhaps there is another obvious solution that I don't see.