小さなionic2/Angular2アプリで作業しています。AWS APIGatewayからJS SDKを生成してプロジェクトにインポートしようとしました。 SDKの.jsファイルである私のアプリケーションのapigClientにアクセスする必要があります。どのように.ts(タイプスクリプト)ロジックにインポートするのですか?AWS API Gateway SDKをionic2/Angular2に統合する方法
var apigClientFactory = {};
apigClientFactory.newClient = function (config) {
var apigClient = { };
if(config === undefined) {
config = {
accessKey: '',
secretKey: '',
sessionToken: '',
region: '',
apiKey: undefined,
defaultContentType: 'application/json',
defaultAcceptType: 'application/json'
};
}
...
api呼び出しを行うには、私のアプリケーションにそのapigClientFactoryのインスタンスを作成する必要があります。
参考資料をご希望の場合は、お申し出ください。
ありがとうございます。