我正在使用 twitter4j 库,但其中一个类有问题。在我的代码中,我得到了一个从函数返回的RequestToken实例。我可以将变量转储到屏幕上,然后看到它实际上是正确的类。它有 2 个自己的公共方法,我可以毫无问题地使用,但它有 6 个从OAuthToken继承的公共方法,我不能使用。当我尝试访问其中任何一个时,Coldfusion 会引发错误:
Either there are no methods with the specified method name and argument types, or the getTokenSecret method is overloaded with argument types that ColdFusion cannot decipher reliably. ColdFusion found 0 methods that matched the provided arguments. If this is a Java object and you verified that the method exists, you may need to use the javacast function to reduce ambiguity.
一些相关代码:
<cfset twitterFactory = createObject("java", "twitter4j.TwitterFactory").init(config)>
<cfset twitter = twitterFactory.getInstance()>
<cfset RequestToken = twitter.getOAuthRequestToken()>
<cfset TokenSecret = RequestToken.getTokenSecret()>
转储 RequestToken 我可以在转储中看到 java 类名,并显示方法。
我需要使用的两个方法是 getToken() 和 getTokenSecret()。也不接受任何参数,因此没有什么可以使用 javacast。
使用coldfusion8,以及最新的twitter4j release 3.0.3