Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Added a field full_picture to the Post Class. #213

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015 the original author or authors.
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -62,6 +62,8 @@ public class Post extends FacebookObject {

private String picture;

private String full_picture;

private Page place;

private Privacy privacy;
Expand Down Expand Up @@ -154,6 +156,10 @@ public String getPicture() {
return picture;
}

public String getFull_picture() {
return full_picture;
}

public Page getPlace() {
return place;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015 the original author or authors.
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -285,7 +285,7 @@ private URIBuilder appendPagedListParameters(PagingParameters pagedListParameter

private static final String[] ALL_POST_FIELDS = {
"id", "actions", "admin_creator", "application", "caption", "created_time", "description", "from", "icon",
"is_hidden", "is_published", "link", "message", "message_tags", "name", "object_id", "picture", "place",
"is_hidden", "is_published", "link", "message", "message_tags", "name", "object_id", "picture", "full_picture", "place",
"privacy", "properties", "source", "status_type", "story", "to", "type", "updated_time", "with_tags", "shares"
};

Expand Down