in reply to Re^2: Post on FB (cron)
in thread Post on FB (cron)

BTW, this kinda works:
$fb->access_token( $access_token ); $fb->add_post() ->to(490559244324622) ->set_message('I like beer.') ->publish;
However, it seems to post on my wall, as my personal account (not the admin of the wall).

Replies are listed 'Best First'.
Re^4: Post on FB (cron)
by ultranerds (Hermit) on Mar 13, 2014 at 17:24 UTC
    Ah ha - got it! Turned out it was an expired access token, so getting a new one - this worked:
    $fb->access_token( $access_token ); $fb->add_post() ->to(490559244324622) ->set_message('I like beer2.') ->publish;
      I had originally posted:
      $groupid = 12345; $fb->add_post ->id($groupid) ->set_message('I like beer.') ->publish;
      However, the method is named "to," and not "id". I apologize for the error. As you showed (and included for future searchers), the code should be:
      $groupid = 12345; $fb->add_post ->to($groupid) ->set_message('I like beer.') ->publish;
      I would like to propose you look at Recipe 3 since it queries "me/accounts" to post as other accounts within your control.