I have made a facebook app using Asp.net, I am using allow email and grant offline access feature. The code which i have written down is something like this
<fb:prompt-permission perms="email">Would you like to receive email from our application?</fb:prompt-permission><br />
<fb:prompt-permission perms="offline_access">Click here to enable offline access</fb:prompt-permission>
when User select Donot allow Offline Access option 2nd time it Gives Object Expected error on callback(permissionsWasGranted)
Object Expected error in facebook app offline access feature
Started by skumar, Aug 12 2009 12:54 AM
2 replies to this topic
#1
Posted 12 August 2009 - 12:54 AM
|
|
|
#2
Posted 12 August 2009 - 03:15 AM
Without seeing the code, it's almost impossible to say what the issue is.
#3
Posted 12 August 2009 - 03:43 AM
<script type="text/javascript">
window.onload = function() {
FB_RequireFeatures(["XFBML", "Integration"], function() {
FB.Bootstrap.init('some keyId', 'company url', null);
FB.Integration.showAddSectionButton("profile", document.getElementById("addSection"));
})
};
</script>
This is the code snippet
window.onload = function() {
FB_RequireFeatures(["XFBML", "Integration"], function() {
FB.Bootstrap.init('some keyId', 'company url', null);
FB.Integration.showAddSectionButton("profile", document.getElementById("addSection"));
})
};
</script>
This is the code snippet


Sign In
Create Account

Back to top









