Я пытаюсь вызвать API (который разрешает только вызовы на стороне сервера) в nodejs.Мне удается вернуть информацию на мою консоль, и теперь я пытаюсь передать эти данные в файл app.js моего приложения реагирования.
В настоящее время я работаю с приложением реагирования на серверную часть node.js и выражаю связь между ними.
[
{
"account": 0,
"symbol": "string",
"currency": "string",
"underlying": "string",
"quoteCurrency": "string",
"commission": 0,
"initMarginReq": 0,
"maintMarginReq": 0,
"riskLimit": 0,
"leverage": 0,
"crossMargin": true,
"deleveragePercentile": 0,
"rebalancedPnl": 0,
"prevRealisedPnl": 0,
"prevUnrealisedPnl": 0,
"prevClosePrice": 0,
"openingTimestamp": "2019-02-13T18:37:44.780Z",
"openingQty": 0,
"openingCost": 0,
"openingComm": 0,
"openOrderBuyQty": 0,
"openOrderBuyCost": 0,
"openOrderBuyPremium": 0,
"openOrderSellQty": 0,
"openOrderSellCost": 0,
"openOrderSellPremium": 0,
"execBuyQty": 0,
"execBuyCost": 0,
"execSellQty": 0,
"execSellCost": 0,
"execQty": 0,
"execCost": 0,
"execComm": 0,
"currentTimestamp": "2019-02-13T18:37:44.780Z",
"currentQty": 0,
"currentCost": 0,
"currentComm": 0,
"realisedCost": 0,
"unrealisedCost": 0,
"grossOpenCost": 0,
"grossOpenPremium": 0,
"grossExecCost": 0,
"isOpen": true,
"markPrice": 0,
"markValue": 0,
"riskValue": 0,
"homeNotional": 0,
"foreignNotional": 0,
"posState": "string",
"posCost": 0,
"posCost2": 0,
"posCross": 0,
"posInit": 0,
"posComm": 0,
"posLoss": 0,
"posMargin": 0,
"posMaint": 0,
"posAllowance": 0,
"taxableMargin": 0,
"initMargin": 0,
"maintMargin": 0,
"sessionMargin": 0,
"targetExcessMargin": 0,
"varMargin": 0,
"realisedGrossPnl": 0,
"realisedTax": 0,
"realisedPnl": 0,
"unrealisedGrossPnl": 0,
"longBankrupt": 0,
"shortBankrupt": 0,
"taxBase": 0,
"indicativeTaxRate": 0,
"indicativeTax": 0,
"unrealisedTax": 0,
"unrealisedPnl": 0,
"unrealisedPnlPcnt": 0,
"unrealisedRoePcnt": 0,
"simpleQty": 0,
"simpleCost": 0,
"simpleValue": 0,
"simplePnl": 0,
"simplePnlPcnt": 0,
"avgCostPrice": 0,
"avgEntryPrice": 0,
"breakEvenPrice": 0,
"marginCallPrice": 0,
"liquidationPrice": 0,
"bankruptPrice": 0,
"timestamp": "2019-02-13T18:37:44.781Z",
"lastPrice": 0,
"lastValue": 0
}
]
Я хочу получить информацию, возвращаемую API, отображаемым в приложении реагирования.