I'm glad that now we can get an email address from users now with 'Twitter4J'.
But, my problem is that I can't use the function which is bring an email from users. My server (based on Spring) had been using Twitter4J with 'maven dependency'. I'm using the way that described in Twitter4J's homepage(http://twitter4j.org/en/index.html):
<dependencies>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>[4.0,)</version>
</dependency>
...
</dependencies>
However, this way can not bring your latest function which is bring an email even use SNAPSHOT
Build Version'.
I think this way can not bring the latest version of Twitter4J which was upload recently in github.
How can I use getEmail()
function using Twitter4J in my application?
Any help is much appreciated, thanks in advance.