skip to Main Content

I have a automated job to publish some data to facebook through API, it was working fine until recently it started throwing error
com.restfb.exception.FacebookOAuthException: Received Facebook error response of type OAuthException: Permissions error (code 200, subcode 1870034)

I googled subcode 1870034 but no help, if anyone have encountered this error previously ,please explain regarding this subcode.

Thanks for any help.

2

Answers


  1. I’m having the same issue for error subcode 1870034, which seems to come from a Custom Audience TOS issue, here is the full error message

    You’ll need to agree to the Custom Audience terms before you can
    create or edit an audience of CUSTOM type.

    You can try accept the Custom Audience TOS using this link https://www.facebook.com/ads/manage/customaudiences/tos/?act=AD_ACCOUNT_ID
    (Though you’d probably need to own the ad account in this case)

    Login or Signup to reply.
  2. Doesn’t seem it’s related to TOS. For me error looked like

    {"error":{"message":"Permissions error","type":"OAuthException","code":200,"error_subcode":1870047,"is_transient":false,"error_user_title":"Audience Size too Low","error_user_msg":"You cannot remove users from this audience because it will result in a low audience size.","fbtrace_id":"xxx"}}

    Here you can find an official answer from FB team
    https://developers.facebook.com/support/bugs/2093728693993530

    Thanks for writing in. I can confirm that this is a valid error message. Custom Audiences must maintain a certain minimum size, though the specific number is not actually documented. I believe the required minimum is approximately 100 unique users. If you need to remove so many users that you’re going under this limit, I’d recommend deleting the custom audience entirely.

    Also why it’s Permissions error

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search