| Steps to Reproduce: | 1. 2 users launch app. 2. Init FB JS SDK FB.init({ appId : "APP_ID", oauth : true, }); 3. Set URL handler function function onUrl(data) { if (data.path.indexOf("games.achieves") != -1) { alert(1); } else if (data.path.indexOf("request_ids") != -1) { alert(2); } else { // default behaviour alert(3); } } FB.Canvas.setUrlHandler(onUrl); 4. First user sends User-to-user request ('apprequest') to the second user. 5. Second user clicks on notification in the left bottom corner. |
|---|---|
| Expected Behavior: | Will see some alert message |
| Actual Behavior: | we don't see any alert message. Page is automaticaly reload |
| API/SDK: | Javascript SDK |
| App IDs: |
|