我通过这个spring xd代码创建了一个将tweet写入文件的流:
stream create --name javatweets --definition "twittersearch --query=java --consumerKey=<my_key>
--consumerSecret=<my_secret> | file" --deploy 不幸的是,我得到了以下错误消息:
WARN DeploymentsPathChildrenCache-0 annotation.AnnotationConfigApplicationContext -
Exception encountered during context initialization - cancelling refresh attempt
org.springframework.beans.factory.BeanCreationException: Error creating bean with name
'org.springframework.integration.x.twitter.TwitterSearchChannelAdapter#0' defined in class path resource [config/twittersearch.xml]: Cannot resolve reference to bean 'twitterTemplate' while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'twitterTemplate' defined in class path resource [config/twittersearch.xml]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.social.twitter.api.impl.TwitterTemplate]: Constructor threw exception; nested exception is org.springframework.web.client.HttpClientErrorException: 403 Forbidden发布于 2014-12-23 21:27:14
HttpClientErrorException: 403禁止
您的凭据(consumerKey和/或consumerSecret)不正确。
https://stackoverflow.com/questions/27619807
复制相似问题