Hi revetkn,
thank you for your help. I followed your example and it works now.
Here is the Video class I wrote, maybe some one else will find it
helpful:
package sl.webvideo.Templates;
import com.restfb.Facebook;
import com.restfb.types.Video;
public class FacebookVideo extends Video
{
@Facebook
private String vid;
@Facebook
private String title;
@Facebook("thumbnail_link")
private String thumbnailUrl;
public String getVid()
{
return vid;
}
public void setVid(String vid)
{
this.vid = vid;
}
public String getTitle()
{
return title;
}
public void setTitle(String title)
{
this.title = title;
}
public String getThumbnailUrl()
{
return thumbnailUrl;
}
public void setThumbnailUrl(String thumbnailUrl)
{
this.thumbnailUrl = thumbnailUrl;