Reputation: 51
I have a facebook app that makes use of signed requests for inviting people to different parts of our page. It seems to work more or less ok, but as a Rails developer I am feeling kind of uneasy not being able to test a feature... Unfortunately, there doesn't seem to be a Test API from facebook for signed requests (only Test User API). Are there still any recommended ways on how to test facebook signed request handling?
Upvotes: 3
Views: 1247
Reputation: 50612
There are lots of libraries out there for parsing it.
We also have this endpoint that will parse the request and show you the content, but it won't test the signature since it doesn't have your api key or secret.
Upvotes: 1