mule 3.7 gmail连接器config-with-oauth问题

时间:2015-10-15 19:09:16

标签: oauth mule mule-studio

我正在尝试使用config-with-oauth使用新的gmail连接器创建gmail集成。我在pom.xml中添加了适当的依赖项,但仍未能找到mule-gmail xsd。

mule config xml> mule xml

Pom> pom.xml

这是> error

1 个答案:

答案 0 :(得分:0)

您需要将连接器添加为mule maven插件中的包含 :

<inclusion>
                            <groupId>org.mule.module</groupId>
                            <artifactId>mule-module-gmail</artifactId>
                        </inclusion>

然后你还需要添加oauth-callback-config

<gmail:config-with-oauth name="GMail_Connector"
        consumerKey="xxx" consumerSecret="xxx" doc:name="GMail Connector">
        <gmail:oauth-callback-config></gmail:oauth-callback-config>
    </gmail:config-with-oauth>