0
Dropbox要求回調URL通過HTTPS(不使用本地主機時)。使用https
使用Mule 3.6.0與最新的Dropbox連接器,回調默認爲http - 因此只與localhost一起使用。對於製作,我需要使用https進行OAuth舞蹈。
指定https回叫URL的正確方法是什麼?
我已經試過:
<https:connector name="connector.http.mule.default">
<https:tls-key-store path="${ssl.certfile}" keyPassword="${ssl.keyPass}" storePassword="${ssl.storePass}"/>
</https:connector>
<dropbox:config name="Dropbox" appKey="${dropbox.appKey}" appSecret="${dropbox.appSecret}" doc:name="Dropbox">
<dropbox:oauth-callback-config domain="production.mydomain.com" path="callback" />
</dropbox:config>
但它的錯誤:
Endpoint scheme must be compatible with the connector scheme. Connector is: "https", endpoint is "http://production.mydomain.com:8052/callback"