Hey Guys,
Please help us.
Recently I was creating BM through the Python. I was using brut accounts on Facebook, and with the api was creating up to 2 BMs on each of them.
So basically the way to create BM was following:
1.Log in into brut account
2. Confirm e-mail address (using your own)
3. Create Primary Page.
4. Create app through Facebook developers.
5. Using the Token Access create BM through the python.
It was easy, but right now while processing in 95% it showing following error:
{'error': {'message': 'An unexpected error has occurred. Please retry your request later.', 'type': 'OAuthException', 'code': 368, 'error_data': {'', 'help_center_id': 0}, 'error_subcode': 1404006, 'error_user_msg': '', 'fbtrace_id': ''}}
We were fixing it by changing the ip firstly, and it helped a lot.
But right now we are just stuck over there, sometimes it creates randomly, but mostly just showing this error until the FB account will be blocked(checked).
We have a theory that it might have happened because of low quality of bruts, but it is just a theory.
Do you have any suggestions?
Any solution or suggestion would help!
Python code attached below.
Here is the code for Python that we using:
import requests
url = 'https://graph.facebook.com/v7.0/106761537721675/businesses'
access = "EAAWgcMxVH0kBAKe1aaOo1wz4jyIz9QQRws8uwPEpO3V3MlZBdI7XjCNIZBEAqNba7DsPEYBZCn08ZAU8FGZBG76yYcmbiaG4OxJhMT1NB5cup1fZABxZBVS0SroZAJhI1uP6OO7qjZCx3etXzghQyeFo1ZB6ZChPUy7m2YelORBKKhZCzs6jNFY2RFAzGOdNZBdYZBaLbjKPxQ7mAjVFBY8buq5e8NvjTv5nEohjI9dhBclSRjZBpsaZBfwImfV6Q71lUFfSygsZD"
data = {
"name":"Moneylomka",
"vertical":"ADVERTISING",
"primary_page":106027894461834,
"timezone_id":"1",
"access_token":access
}
r = requests.post(url=url,data=data)
print(r.json())
Please help us.
Recently I was creating BM through the Python. I was using brut accounts on Facebook, and with the api was creating up to 2 BMs on each of them.
So basically the way to create BM was following:
1.Log in into brut account
2. Confirm e-mail address (using your own)
3. Create Primary Page.
4. Create app through Facebook developers.
5. Using the Token Access create BM through the python.
It was easy, but right now while processing in 95% it showing following error:
{'error': {'message': 'An unexpected error has occurred. Please retry your request later.', 'type': 'OAuthException', 'code': 368, 'error_data': {'', 'help_center_id': 0}, 'error_subcode': 1404006, 'error_user_msg': '', 'fbtrace_id': ''}}
We were fixing it by changing the ip firstly, and it helped a lot.
But right now we are just stuck over there, sometimes it creates randomly, but mostly just showing this error until the FB account will be blocked(checked).
We have a theory that it might have happened because of low quality of bruts, but it is just a theory.
Do you have any suggestions?
Any solution or suggestion would help!
Python code attached below.
Here is the code for Python that we using:
import requests
url = 'https://graph.facebook.com/v7.0/106761537721675/businesses'
access = "EAAWgcMxVH0kBAKe1aaOo1wz4jyIz9QQRws8uwPEpO3V3MlZBdI7XjCNIZBEAqNba7DsPEYBZCn08ZAU8FGZBG76yYcmbiaG4OxJhMT1NB5cup1fZABxZBVS0SroZAJhI1uP6OO7qjZCx3etXzghQyeFo1ZB6ZChPUy7m2YelORBKKhZCzs6jNFY2RFAzGOdNZBdYZBaLbjKPxQ7mAjVFBY8buq5e8NvjTv5nEohjI9dhBclSRjZBpsaZBfwImfV6Q71lUFfSygsZD"
data = {
"name":"Moneylomka",
"vertical":"ADVERTISING",
"primary_page":106027894461834,
"timezone_id":"1",
"access_token":access
}
r = requests.post(url=url,data=data)
print(r.json())