Getting “FacebookAds::ClientError (Invalid parameter: Terms of Service Not Accepted (fbtrace_id: Ch/RdwGB+D3))” after i call api to create AppDevise, requiring user to accept terms of service?Facebook not asking for permissionsHow to get the facebook native permission dialog on ios6 to ask the user to accept terms and privacy policies of the app?Unable to get a long term access token using facebook graph apiHow to manage more than 25 Facebook ad accounts per user?Facebook Invalid Scopes error on test appResetting a FaceBook App Domain and Web Platform URL - Possible Caching issue?Generate Facebook access token with ads_readHow to get app accesstoken for marketing API FacebookFacebook access token without Login Dialog
Could I use a greatsword and a longsword in one turn with Two-Weapon Fighting and the Dual Wielder feat?
Can a pizza stone be fixed after soap has been used to clean it?
Video editor for YouTube
Doing research in academia and not liking competition
What are "full piece" and "half piece" in chess?
Why is "dark" an adverb in this sentence?
Is there a way to handmake alphabet pasta?
Why don't commercial aircraft adopt a slightly more seaplane-like design to allow safer ditching in case of emergency?
I have accepted an internship offer. Should I inform companies I have applied to that have not gotten back to me yet?
What is this called? A tube flange bearing threaded for threaded pushrod
Can a Resident Assistant Be Told to Ignore a Lawful Order?
Are the errors in this formulation of the simple linear regression model random variables?
I won USD 50K! Now what should I do with it?
Project Euler, problem # 9, Pythagorean triplet
line break after the word "proof" in proof environment
Are L-functions uniquely determined by their values at negative integers?
Why does FFmpeg choose 10+20+20 ms instead of an even 16 ms for 60 fps GIF images?
Will it hurt my career to work as a graphic designer in a startup for beauty and skin care?
When to ask for constructive criticism?
Source of story about the Vilna Gaon and immigration policy
Why run a service as a system user?
Why does the Trade Federation become so alarmed upon learning the ambassadors are Jedi Knights?
Why limit to revolvers?
What is the German word or phrase for "village returning to forest"?
Getting “FacebookAds::ClientError (Invalid parameter: Terms of Service Not Accepted (fbtrace_id: Ch/RdwGB+D3))” after i call api to create App
Devise, requiring user to accept terms of service?Facebook not asking for permissionsHow to get the facebook native permission dialog on ios6 to ask the user to accept terms and privacy policies of the app?Unable to get a long term access token using facebook graph apiHow to manage more than 25 Facebook ad accounts per user?Facebook Invalid Scopes error on test appResetting a FaceBook App Domain and Web Platform URL - Possible Caching issue?Generate Facebook access token with ads_readHow to get app accesstoken for marketing API FacebookFacebook access token without Login Dialog
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I will explain the scenarios here
1) When user click on link facebook button facebook permission dialog is bypassed and returns back directly on redirect uri(http://localhost:3000/ in my case) with code and state.
2) I am successfully able to exchange the code return above with access token.
3) I used facebooks access token debugger to analyze the token above and shows be proper scopes i need.
4) After this i fetch ad_accounts id, page token and page ids using this token.
5) when i use this token to create campaign for ads i get the following error.
FacebookAds::ClientError (Invalid parameter: Terms of Service Not Accepted (fbtrace_id: Ch/RdwGB+D3))
I use ruby facebook-business-sdk.
My app is in development mode and not live yet.
I can see both facebook login and marketing api green live in my app dashboard.
It makes sense to me that i am getting "Terms not accepted error" as user is never prompted to permissions dialog to permit my app for token.
I also observed that if add scope
params to facebook login uri, the user is prompted to permission dialog.
I must be missing some configuration here, i have not yet submitted my app for review.
Any help/clue is appreciated.
ruby-on-rails facebook facebook-apps facebook-ads-api facebook-app-settings
|
show 2 more comments
I will explain the scenarios here
1) When user click on link facebook button facebook permission dialog is bypassed and returns back directly on redirect uri(http://localhost:3000/ in my case) with code and state.
2) I am successfully able to exchange the code return above with access token.
3) I used facebooks access token debugger to analyze the token above and shows be proper scopes i need.
4) After this i fetch ad_accounts id, page token and page ids using this token.
5) when i use this token to create campaign for ads i get the following error.
FacebookAds::ClientError (Invalid parameter: Terms of Service Not Accepted (fbtrace_id: Ch/RdwGB+D3))
I use ruby facebook-business-sdk.
My app is in development mode and not live yet.
I can see both facebook login and marketing api green live in my app dashboard.
It makes sense to me that i am getting "Terms not accepted error" as user is never prompted to permissions dialog to permit my app for token.
I also observed that if add scope
params to facebook login uri, the user is prompted to permission dialog.
I must be missing some configuration here, i have not yet submitted my app for review.
Any help/clue is appreciated.
ruby-on-rails facebook facebook-apps facebook-ads-api facebook-app-settings
1
The user account must visit facebook.com/ads/leadgen/tos and accept the ToS, before you can make this kind of API call.
– 04FS
Mar 26 at 7:42
i checked this page and ToS are already accepted and marked with green.
– user3775217
Mar 26 at 7:49
Specifically for the page(s) in question?
– 04FS
Mar 26 at 7:52
i can't specifically find them. Api was working fine till friday i was able to create ads.
– user3775217
Mar 26 at 7:57
i found this facebook.com/customaudiences/app/tos and accepted them
– user3775217
Mar 26 at 8:01
|
show 2 more comments
I will explain the scenarios here
1) When user click on link facebook button facebook permission dialog is bypassed and returns back directly on redirect uri(http://localhost:3000/ in my case) with code and state.
2) I am successfully able to exchange the code return above with access token.
3) I used facebooks access token debugger to analyze the token above and shows be proper scopes i need.
4) After this i fetch ad_accounts id, page token and page ids using this token.
5) when i use this token to create campaign for ads i get the following error.
FacebookAds::ClientError (Invalid parameter: Terms of Service Not Accepted (fbtrace_id: Ch/RdwGB+D3))
I use ruby facebook-business-sdk.
My app is in development mode and not live yet.
I can see both facebook login and marketing api green live in my app dashboard.
It makes sense to me that i am getting "Terms not accepted error" as user is never prompted to permissions dialog to permit my app for token.
I also observed that if add scope
params to facebook login uri, the user is prompted to permission dialog.
I must be missing some configuration here, i have not yet submitted my app for review.
Any help/clue is appreciated.
ruby-on-rails facebook facebook-apps facebook-ads-api facebook-app-settings
I will explain the scenarios here
1) When user click on link facebook button facebook permission dialog is bypassed and returns back directly on redirect uri(http://localhost:3000/ in my case) with code and state.
2) I am successfully able to exchange the code return above with access token.
3) I used facebooks access token debugger to analyze the token above and shows be proper scopes i need.
4) After this i fetch ad_accounts id, page token and page ids using this token.
5) when i use this token to create campaign for ads i get the following error.
FacebookAds::ClientError (Invalid parameter: Terms of Service Not Accepted (fbtrace_id: Ch/RdwGB+D3))
I use ruby facebook-business-sdk.
My app is in development mode and not live yet.
I can see both facebook login and marketing api green live in my app dashboard.
It makes sense to me that i am getting "Terms not accepted error" as user is never prompted to permissions dialog to permit my app for token.
I also observed that if add scope
params to facebook login uri, the user is prompted to permission dialog.
I must be missing some configuration here, i have not yet submitted my app for review.
Any help/clue is appreciated.
ruby-on-rails facebook facebook-apps facebook-ads-api facebook-app-settings
ruby-on-rails facebook facebook-apps facebook-ads-api facebook-app-settings
edited Mar 26 at 9:31
user3775217
asked Mar 26 at 7:36
user3775217user3775217
3,0671 gold badge11 silver badges25 bronze badges
3,0671 gold badge11 silver badges25 bronze badges
1
The user account must visit facebook.com/ads/leadgen/tos and accept the ToS, before you can make this kind of API call.
– 04FS
Mar 26 at 7:42
i checked this page and ToS are already accepted and marked with green.
– user3775217
Mar 26 at 7:49
Specifically for the page(s) in question?
– 04FS
Mar 26 at 7:52
i can't specifically find them. Api was working fine till friday i was able to create ads.
– user3775217
Mar 26 at 7:57
i found this facebook.com/customaudiences/app/tos and accepted them
– user3775217
Mar 26 at 8:01
|
show 2 more comments
1
The user account must visit facebook.com/ads/leadgen/tos and accept the ToS, before you can make this kind of API call.
– 04FS
Mar 26 at 7:42
i checked this page and ToS are already accepted and marked with green.
– user3775217
Mar 26 at 7:49
Specifically for the page(s) in question?
– 04FS
Mar 26 at 7:52
i can't specifically find them. Api was working fine till friday i was able to create ads.
– user3775217
Mar 26 at 7:57
i found this facebook.com/customaudiences/app/tos and accepted them
– user3775217
Mar 26 at 8:01
1
1
The user account must visit facebook.com/ads/leadgen/tos and accept the ToS, before you can make this kind of API call.
– 04FS
Mar 26 at 7:42
The user account must visit facebook.com/ads/leadgen/tos and accept the ToS, before you can make this kind of API call.
– 04FS
Mar 26 at 7:42
i checked this page and ToS are already accepted and marked with green.
– user3775217
Mar 26 at 7:49
i checked this page and ToS are already accepted and marked with green.
– user3775217
Mar 26 at 7:49
Specifically for the page(s) in question?
– 04FS
Mar 26 at 7:52
Specifically for the page(s) in question?
– 04FS
Mar 26 at 7:52
i can't specifically find them. Api was working fine till friday i was able to create ads.
– user3775217
Mar 26 at 7:57
i can't specifically find them. Api was working fine till friday i was able to create ads.
– user3775217
Mar 26 at 7:57
i found this facebook.com/customaudiences/app/tos and accepted them
– user3775217
Mar 26 at 8:01
i found this facebook.com/customaudiences/app/tos and accepted them
– user3775217
Mar 26 at 8:01
|
show 2 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351911%2fgetting-facebookadsclienterror-invalid-parameter-terms-of-service-not-accep%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351911%2fgetting-facebookadsclienterror-invalid-parameter-terms-of-service-not-accep%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
The user account must visit facebook.com/ads/leadgen/tos and accept the ToS, before you can make this kind of API call.
– 04FS
Mar 26 at 7:42
i checked this page and ToS are already accepted and marked with green.
– user3775217
Mar 26 at 7:49
Specifically for the page(s) in question?
– 04FS
Mar 26 at 7:52
i can't specifically find them. Api was working fine till friday i was able to create ads.
– user3775217
Mar 26 at 7:57
i found this facebook.com/customaudiences/app/tos and accepted them
– user3775217
Mar 26 at 8:01