ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

android – 如何使用facebook sdk将位图发布到Facebook?

2019-10-03 01:26:28  阅读:175  来源: 互联网

标签:facebook-sharer facebook-sdk-3-0 android facebook-graph-api


我找不到使用facebook sdk将图像发布到我的Facebook墙上的正确解决方案.
在stackOverflow上,我找到了以下解决方案,但不推荐使用AsyncFacebookRunner和mAsyncRunner.request,它们不起作用.

private Facebook facebook;
@SuppressWarnings("deprecation")
public void shareImg(View v) {

    System.out.println("ciao");
    Bitmap img = albero.getDrawingCache();
    if (img != null) {  
        byte[] data = null;

        Bitmap bi = img;
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        bi.compress(Bitmap.CompressFormat.JPEG, 100, baos);
        data = baos.toByteArray();

        Bundle params = new Bundle();
        params.putString("method", "photos.upload");
        params.putByteArray("picture", data);

        AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(facebook);
        mAsyncRunner.request("me/posts", params, "POST", new SampleUploadListener(), null);

    }
}

有什么建议么?

解决方法:

完整的解决方案:

Request.Callback uploadPhotoRequestCallback = new Request.Callback() {
    @Override
    public void onCompleted(Response response) {
        if (response.getError() != null) { 
            //post error
        } else{
             String idRploadResponse = (String) response.getGraphObject().getProperty("id");
             if (idRploadResponse!= null) { 

                String fbPhotoAddress = "https://www.facebook.com/photo.php?fbid=" +idRploadResponse;                             
             } else { 
                   //error
             } 

        }
    }
};


@SuppressWarnings("deprecation")
public void shareImg(View v) {
    Bitmap img = albero.getDrawingCache(); //I get Btimap from View 

    if (img != null) {

        Request request = Request.newUploadPhotoRequest(Session.getActiveSession(), img,  uploadPhotoRequestCallback);
        Bundle parameters = request.getParameters(); // <-- THIS IS IMPORTANT
        parameters.putString("message", "My message");
        // add more params here
        request.setParameters(parameters);
        request.executeAsync();
    }
}

标签:facebook-sharer,facebook-sdk-3-0,android,facebook-graph-api
来源: https://codeday.me/bug/20191003/1845757.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有