You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the create_audience_group() method, which is supposed to return a CreateAudienceGroupResponse object. However, in my implementation, it returns None. I verified that the audience group was successfully created by using get_audience_groups(). Additionally, when I called LINE's native API directly, it returned the expected response, but when using the SDK, there is no return value.
The text was updated successfully, but these errors were encountered:
Thank you for using line-bot-sdk-python, @THChen2002 !
I found the root cause, and your program is not wrong. I'll make a patch within this week.
After the fix, I will create a patch version, so please wait.
In the meantime, you can do one of the following:
Wait for the release of the patch version
Use create_audience_group_with_http_info() instead of create_audience_group(), as this is not broken
I'm using the
create_audience_group()
method, which is supposed to return aCreateAudienceGroupResponse
object. However, in my implementation, it returnsNone
. I verified that the audience group was successfully created by usingget_audience_groups()
. Additionally, when I called LINE's native API directly, it returned the expected response, but when using the SDK, there is no return value.The text was updated successfully, but these errors were encountered: