tags:

views:

246

answers:

1

Hi all,

I am building a small facebook application using facebook developer toolkit 3.0 in c#. I had this piece of code that used to work a week ago. From some reason, when I try publishing my feed it appear without an image and without a flash move. Here's my code:

string userName = FacebookAPI.Users.GetInfo().name;
string message = "";

attachment attach = new attachment();

attach.href = string.Format(@"http://apps.facebook.com/{0}/?uId={1}&uName={2}", Consts.APP_NAME, ViewerUserId, userName);

attachment_media_flash flash = new attachment_media_flash();
flash.type = attachment_media_type.flash;
flash.expanded_width = 320;
flash.expanded_height = 260;
flash.height = 100;
flash.width = 130;

message = "";
attach.name = ""
attach.caption = "this works";
attach.description = ""
flash.imgsrc = string.Format(@"{0}/flash/Pinguin.JPG", Consts.DOMAIN_NAME);
flash.swfsrc = string.Format(@"{0}/flash/pinguin.swf", Consts.DOMAIN_NAME);

List<attachment_media> attach_media_list = new List<attachment_media>();
attach_media_list.Add(flash);

attach.media = attach_media_list;


/* action links */
List<action_link> actionlink = new List<action_link>();

action_link al1 = new action_link();
al1.href = string.Format(@"http://apps.facebook.com/{0}", Consts.APP_NAME);
al1.text = "myApp";

actionlink.Add(al1);
FacebookAPI.Stream.Publish(message, attach, actionlink, null , Convert.ToInt64   (ViewerUserId));
A: 

Make sure that:

1: The URL you pass is not the one that of fb app like http://apps.fb.co/whetever/image.jpg
It should be your domain url like http://www.example.com/images/myimage.jpg

2: You need to pass full URL of the image including http part like so:
http://www.example.com/images/myimage.jpg

Following will be wrong:

www.example.com/images/myimage.jpg

Sarfraz

related questions