We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Если вызвать так data = api(methods.Subscribers.get, count=1000, date_from='30.03.2021 01:00:00', date_to = '30.03.2021 15:37:59', vk_user_id=['3424242', '654654564'] )
то приходит в сенлер [ count:1000, date_from:'30.03.2021 01:00:00', date_to :'30.03.2021 15:37:59', vk_user_id=654654564 ] а надо [ count:1000, date_from:'30.03.2021 01:00:00', date_to :'30.03.2021 15:37:59', vk_user_id=[ '3424242', '654654564' ]]
массив vk_user_id обрезается
в сенлере читаю $_POST
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Если вызвать так data = api(methods.Subscribers.get,
count=1000,
date_from='30.03.2021 01:00:00',
date_to = '30.03.2021 15:37:59',
vk_user_id=['3424242', '654654564']
)
то приходит в сенлер [ count:1000, date_from:'30.03.2021 01:00:00', date_to :'30.03.2021 15:37:59', vk_user_id=654654564 ]
а надо
[ count:1000, date_from:'30.03.2021 01:00:00', date_to :'30.03.2021 15:37:59', vk_user_id=[ '3424242', '654654564' ]]
массив vk_user_id обрезается
в сенлере читаю $_POST
The text was updated successfully, but these errors were encountered: