Examples of postLink()


Examples of facebook4j.Facebook.postLink()

            }else if(activityModel.getAttachmentsType().getCategory().equals(Constants.GOOGLE_ACTIVITY_ATTACHMENTS_TYPE_ARTICLE)) {
                // リンク付き投稿の場合
                URL attachmentsUrl = new URL(activityModel.getAttachmentsUrlString());

                if(msg == null) {
                    facebook.postLink(attachmentsUrl);

                }else {
                    facebook.postLink(attachmentsUrl, msg);
                }
View Full Code Here

Examples of facebook4j.Facebook.postLink()

                if(msg == null) {
                    facebook.postLink(attachmentsUrl);

                }else {
                    facebook.postLink(attachmentsUrl, msg);
                }

            }else if(activityModel.getAttachmentsType() != null
                    && (activityModel.getAttachmentsType().getCategory().equals(Constants.GOOGLE_ACTIVITY_ATTACHMENTS_TYPE_PHOTO)
                    || activityModel.getAttachmentsType().getCategory().equals(Constants.GOOGLE_ACTIVITY_ATTACHMENTS_TYPE_ALBUM))
View Full Code Here

Examples of facebook4j.Facebook.postLink()

                    && activityModel.getAttachmentsType().getCategory().equals(Constants.GOOGLE_ACTIVITY_ATTACHMENTS_TYPE_VIDEO)) {
                // 動画の場合
                URL embedUrl = new URL(activityModel.getEmbedUrlString());

                if(msg == null) {
                    facebook.postLink(embedUrl);

                }else {
                    facebook.postLink(embedUrl, msg);
                }
            }
View Full Code Here

Examples of facebook4j.Facebook.postLink()

                if(msg == null) {
                    facebook.postLink(embedUrl);

                }else {
                    facebook.postLink(embedUrl, msg);
                }
            }


        }catch(Exception e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.