Please use the following template to submit your issue. Following this template will allow us to quickly investigate and help you with your issue. Please be aware that issues which do not conform to this template may be closed.
For feature requests please contact us at team@intercom.io
Version info
intercom-java version: 2.8.2
Java version: Using kotlin version 1.5.20
Expected behavior
I expect a list of data for tags or contacts to be returned in the iterator
Actual behavior
iterator is empty and hasNext() is always false
Steps to reproduce
call Intercom.setToken("api-key") (confirmed this was correct by hitting the rest endpoint directly from postman
call Tag.list()
While loop iterator prints nothing
val tags = Tag.list()
while(tags.hasNext()) {
println(tags.next())
}
Debugger shows pages and page being empty.
The tag.create function works correctly and adds the tag that i can see in my workspace
val tag = Tag.create(Tag().setName("new tag from api again"))
Please use the following template to submit your issue. Following this template will allow us to quickly investigate and help you with your issue. Please be aware that issues which do not conform to this template may be closed.
For feature requests please contact us at team@intercom.io
Version info
Expected behavior
I expect a list of data for tags or contacts to be returned in the iterator
Actual behavior
iterator is empty and hasNext() is always false
Steps to reproduce
Debugger shows pages and page being empty.
The tag.create function works correctly and adds the tag that i can see in my workspace
Logs