2017-10-10 6 views
0

私は非常にmulesoftもの全体に新しいです。私が現在やっているのは、私がLinkedinに最初に承認したmulesoftのフローを取得してから、基本的なプロファイルの詳細を取得することです。私が望むことがわかっているのは、私のReactアプリケーションにその情報を表示することです。私はReasonアプリケーションにmulesoftのフローからjson結果を取得して表示するにはどうすればいいですか?Mulesoftの反応するプロジェクト

はここに私のmulesoft流れ私の理解あたりとして

<?xml version="1.0" encoding="UTF-8"?> 

<mule xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting" 
    xmlns:tcp="http://www.mulesoft.org/schema/mule/tcp" xmlns:dw="http://www.mulesoft.org/schema/mule/ee/dw" xmlns:oauth2="http://www.mulesoft.org/schema/mule/oauth2" xmlns:json="http://www.mulesoft.org/schema/mule/json" xmlns:linkedin="http://www.mulesoft.org/schema/mule/linkedin" xmlns:barn1="http://www.mulesoft.org/schema/mule/barn1" xmlns:barn="http://www.mulesoft.org/schema/mule/barn" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" 
    xmlns:spring="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd 
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd 
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd 
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd 
http://www.mulesoft.org/schema/mule/linkedin http://www.mulesoft.org/schema/mule/linkedin/current/mule-linkedin.xsd 
http://www.mulesoft.org/schema/mule/json http://www.mulesoft.org/schema/mule/json/current/mule-json.xsd 
http://www.mulesoft.org/schema/mule/oauth2 http://www.mulesoft.org/schema/mule/oauth2/current/mule-oauth2.xsd 
http://www.mulesoft.org/schema/mule/ee/dw http://www.mulesoft.org/schema/mule/ee/dw/current/dw.xsd 
http://www.mulesoft.org/schema/mule/tcp http://www.mulesoft.org/schema/mule/tcp/current/mule-tcp.xsd"> 
    <http:listener-config name="HTTP_Listener_Configuration" host="localhost" port="3000" doc:name="HTTP Listener Configuration" connectionIdleTimeout="3000000"/> 
    <http:request-config name="AcceptHTTP_Request_Configuration" host="api.linkedin.com/v1/people/~?" port="403" doc:name="HTTP Request Configuration" connectionIdleTimeout="300000000" protocol="HTTPS"> 
     <oauth2:authorization-code-grant-type clientId="77ii50ttcezoti" clientSecret="aifsEkcXEiMsayru" redirectionUrl="http://localhost:3000/callback"> 
      <oauth2:authorization-request authorizationUrl="https://www.linkedin.com/oauth/v2/authorization?response_type=code&amp;state=987654321" localAuthorizationUrl="http://localhost:3000/authorize"/> 
      <oauth2:token-request tokenUrl="http://linkedin.com/oauth/v2/accessToken" > 
       <oauth2:token-response > 
        <oauth2:custom-parameter-extractor paramName="token_1" value="#[json:token_type]"/> 
       </oauth2:token-response> 
      </oauth2:token-request> 
     </oauth2:authorization-code-grant-type> 
    </http:request-config> 
    <http:request-config name="HTTP_Request_Configuration" host="api.linkedin.com" port="8081" doc:name="HTTP Request Configuration"/> 
    <oauth2:token-manager-config name="Token_Manager_Config" doc:name="Token Manager Config"/> 
    <flow name="testingFlow"> 
     <http:listener config-ref="HTTP_Listener_Configuration" path="/linkedin" doc:name="authorize" allowedMethods="GET"/> 
     <http:request config-ref="AcceptHTTP_Request_Configuration" path="/" method="GET" doc:name="getaccesstoken"/> 
     <json:xml-to-json-transformer doc:name="XML to JSON"/> 
    </flow> 
</mule> 

答えて

1

である、あなたはLinkedInのプロフィール情報を持っています。 ミュールで情報がペイロードとして利用可能になります。#[payload]でアクセスでき、応答として利用できます。あらゆるフロントエンド技術(反応、角度、バックボーン)でこれにアクセスするには、それぞれのミュールフローを呼び出すだけです。

あなたの場合:localhost:3000/linkedin(GETと呼ぶ)

関連する問題