*Error:**TwythonError: Twitter API returned a 400 (Bad Request), This audience type requires an audience value
The error occurs when i change the audience type from ALL_ON_TWITTER to ORGANIC Where the api documentation has audience types All_ON_TWITTER & ORGANIC
from twython import Twython
import json
APP_KEY = ''
APP_SECRET = ''
OAUTH_TOKEN = ''
OAUTH_TOKEN_SECRET = ''
twitter = Twython(APP_KEY, APP_SECRET,OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
account_id = '*'
t = twitter.request(‘https://ads-api.twitter.com/1/insights/accounts/{}/?
audience_type=ORGANIC’.format(account_id))
#https://ads-api.twitter.com/1/insights/accounts/ACCOUNT_ID/available_audiences
print t