django & facebook: security & design for a facebook webapp that performs a third party login on behalf of the user

后端 未结 3 2253
无人共我
无人共我 2021-01-21 22:57

I\'m writing a Facebook canvas webapp that performs a login (using urllib) to a third party website and performs actions on behalf of the user. This means I have 2 accounts; the

3条回答
  •  情深已故
    2021-01-21 23:19

    Security through obscurity might be your best bet. Perhaps implement an algorithm to generate the key using something standard (like the current datetime). You can store the date in your db, and use that to generate the key using your own algorithm.

提交回复
热议问题