WordPress.com REST API “That API call is not allowed for this account.”

I’m trying to include my free wordpress.com blog on my personal website using CakePHP. Displaying all the posts and accessing to each post on my website works fine but I can’t post a comment. I’m getting :

[
‘error’ => ‘unauthorized’,
‘message’ => ‘That API call is not allowed for this account.’
]

Read More

every time I submit a comment and I’m wondering why?

Related posts

2 comments

  1. Ok i found it. Here is details where to change.

    $url_to = AUTHENTICATE_URL .'?'. http_build_query( $params );
    

    I have changed AUTHENTICATE_URL with Authorize_URL and it works for me.

    $url_to = Authorize_URL .'?'. http_build_query( $params );
    

Comments are closed.