Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TMS VCL Cloud Pack
How to post to a Facebook page

Following example shows how you can post to a Facebook page:
  AdvFacebook1.GetPages;
  if AdvFacebook1.PageList.Count > 0 then
    AdvFacebook1.Post('Hello world', '', '', AdvFacebook1.PageList[0]);
Please make sure the page you want to post to is in the PageList collection after calling GetPages and that you have specified the correct index.