最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Amplify.configure is not a function - Stack Overflow

programmeradmin1浏览0评论

Trying to use AWS Amplify with S3 Storage following this tutorial with the manual set up. I created an amplify-test.js file as follows:

// import Amplify from 'aws-amplify';
var Amplify = require('aws-amplify');

console.log(Amplify)

Amplify.configure({
    Auth: {
    // REQUIRED - Amazon Cognito Identity Pool ID
        identityPoolId: 'my identity pool id', 
    // REQUIRED - Amazon Cognito Region
        region: 'region', 
    // OPTIONAL - Amazon Cognito User Pool ID
        userPoolId: 'my user pool id',
    // OPTIONAL - Amazon Cognito Web Client ID
        userPoolWebClientId: 'XX-XXXX-X_abcd1234', 
    },
    Storage: {
        bucket: 's3 bucket', //REQUIRED -  Amazon S3 bucket
        region: 'XX-XXXX-X', //OPTIONAL -  Amazon service region
    }
});

Amplify.Storage.put('test.txt', 'Hello')
       .then (result => console.log(result))
       .catch(err => console.log(err));

But when I run node amplify-test.js, I got the following error:

Amplify.configure({ ^

TypeError: Amplify.configure is not a function at Object. (C:\Users\Xiaoyun\VuePwa\aws-cognito-amplify-test\src\amplify-test.js:6:9) at Module._pile (internal/modules/cjs/loader.js:702:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10) at Module.load (internal/modules/cjs/loader.js:612:32) at tryModuleLoad (internal/modules/cjs/loader.js:551:12) at Function.Module._load (internal/modules/cjs/loader.js:543:3) at Function.Module.runMain (internal/modules/cjs/loader.js:744:10) at startup (internal/bootstrap/node.js:238:19) at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)

I've already installed aws-amplify by running npm install aws-amplify --save. What am I doing wrong?

Trying to use AWS Amplify with S3 Storage following this tutorial with the manual set up. I created an amplify-test.js file as follows:

// import Amplify from 'aws-amplify';
var Amplify = require('aws-amplify');

console.log(Amplify)

Amplify.configure({
    Auth: {
    // REQUIRED - Amazon Cognito Identity Pool ID
        identityPoolId: 'my identity pool id', 
    // REQUIRED - Amazon Cognito Region
        region: 'region', 
    // OPTIONAL - Amazon Cognito User Pool ID
        userPoolId: 'my user pool id',
    // OPTIONAL - Amazon Cognito Web Client ID
        userPoolWebClientId: 'XX-XXXX-X_abcd1234', 
    },
    Storage: {
        bucket: 's3 bucket', //REQUIRED -  Amazon S3 bucket
        region: 'XX-XXXX-X', //OPTIONAL -  Amazon service region
    }
});

Amplify.Storage.put('test.txt', 'Hello')
       .then (result => console.log(result))
       .catch(err => console.log(err));

But when I run node amplify-test.js, I got the following error:

Amplify.configure({ ^

TypeError: Amplify.configure is not a function at Object. (C:\Users\Xiaoyun\VuePwa\aws-cognito-amplify-test\src\amplify-test.js:6:9) at Module._pile (internal/modules/cjs/loader.js:702:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10) at Module.load (internal/modules/cjs/loader.js:612:32) at tryModuleLoad (internal/modules/cjs/loader.js:551:12) at Function.Module._load (internal/modules/cjs/loader.js:543:3) at Function.Module.runMain (internal/modules/cjs/loader.js:744:10) at startup (internal/bootstrap/node.js:238:19) at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)

I've already installed aws-amplify by running npm install aws-amplify --save. What am I doing wrong?

Share asked Jul 17, 2018 at 2:07 akuiperakuiper 215k33 gold badges361 silver badges379 bronze badges 1
  • github./aws-amplify/amplify-js/issues/443 – bigless Commented Jul 17, 2018 at 2:24
Add a ment  | 

2 Answers 2

Reset to default 10

If you are using const Amplify = require("aws-amplify");

With

Amplify.default.configure({ Auth: {

  // REQUIRED - Amazon Cognito Identity Pool ID
  identityPoolId: 'my identity pool id', 

  // REQUIRED - Amazon Cognito Region
  region: 'region', 

  // OPTIONAL - Amazon Cognito User Pool ID
  userPoolId: 'my user pool id',

  // OPTIONAL - Amazon Cognito Web Client ID
  userPoolWebClientId: 'XX-XXXX-X_abcd1234', 
},

Storage: {
  bucket: 's3 bucket', //REQUIRED -  Amazon S3 bucket
  region: 'XX-XXXX-X', //OPTIONAL -  Amazon service region
}

});

should solve your problem. It did for me.

var { Amplify } = require('aws-amplify');
发布评论

评论列表(0)

  1. 暂无评论