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
Hello,
Actually, the api joins all the arguments of an Array param but keep the key as original, see: https://github.com/arsduo/koala/blob/master/lib/koala/api.rb#L131
Array
For example, we have to use this syntax:
api.put_connections('me', 'blocked', { 'asid[]': [ APP_SCOPED_USER_ID_1, APP_SCOPED_USER_ID_1 ] })
WDYT to remove the brackets and add them implicitly ? It looks nicer and more logical to me.
api.put_connections('me', 'blocked', { 'asid': [ APP_SCOPED_USER_ID_1, APP_SCOPED_USER_ID_1 ] })
api is a Koala::Facebook::API object.
api
Koala::Facebook::API
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Actually, the api joins all the arguments of an
Array
param but keep the key as original, see: https://github.com/arsduo/koala/blob/master/lib/koala/api.rb#L131For example, we have to use this syntax:
WDYT to remove the brackets and add them implicitly ? It looks nicer and more logical to me.
api
is aKoala::Facebook::API
object.The text was updated successfully, but these errors were encountered: