huuanh1987 / facebook-java-api

Automatically exported from code.google.com/p/facebook-java-api
0 stars 0 forks source link

Publish recent activity #247

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. "Publish recent activity (one line stories) to my wall"
2. If the user unchecks the box, to prevent the App from posting things to 
their wall
3.

What is the expected output? What do you see instead?
How i check the permission and display message to user or permission box

What version of the product are you using? On what operating system?
APi Version 2.1.1

Please provide any additional information below.

Original issue reported on code.google.com by shaheervu@gmail.com on 25 Sep 2009 at 5:42

GoogleCodeExporter commented 8 years ago
<script type="text/javascript">
        var offlineAccess = "";
          FB_RequireFeatures(["CanvasUtil"], function(){        
            FB.XdComm.Server.init(getBasePath()+"/xd_receiverfb.jsp");
            FB.CanvasClient.setCanvasHeight("1200pt");              
            FB.ensureInit(function() {
            FB.XFBML.Host.parseDomTree();
            FB.Facebook.get_sessionState().waitUntilReady(function()
            {

FB.Connect.showPermissionDialog('offline_access,read_stream,publish_stream,email
,create_note,read_mailbox',
offline_callback);
            });

           });
        });         

        function offline_callback(granted) {                    
             if (granted) 
                 {
                    // alert('User has granted offline permission');      
                 }
             else
                 {
                    // alert('User has not granted offline permission');
                 }
         }
        </script>

please see code this will work fine for u

Original comment by dinesh....@gmail.com on 29 Sep 2009 at 11:07

GoogleCodeExporter commented 8 years ago
if you have a question, please use the discussion forum. (link on the homepage 
of
project).

Original comment by fern...@gmail.com on 1 Nov 2009 at 12:54