ReactJS、Spotify API、Promiseの使い方を学んでいます。私はSpotifyでミュージシャンのトップアルバムを取りに来て、そのトラックの30秒をプレイしようとしています。ReactJS componentDidMount、Fetch Spotify APIとPromise
私はspotify-web-api-nodeと呼ばれるSpotifyパッケージを使用しています。私はReactまたはJSについて何か基本的なことを理解していないと思います。 Syntax error: Unexpected token, expected ((11:8)
インポート 'リアクション'から反応します。
import SpotifyWebApi from 'spotify-web-api-node';
require('dotenv').config();
export default class SpotifyComponent extends React.Component {
// Create the api object with the credentials
const spotifyApi = new SpotifyWebApi({
clientId : process.env.REACT_APP_SPOTIFY_CLIENT_ID,
clientSecret : process.env.REACT_APP_SPOTIFY_CLIENT_SECRET
});
// Save the access token so that it's used in future calls
componentDidMount() {
**(11:8)** --> return spotifyApi = new Promise((resolve, reject) => {
spotifyApi.clientCredentialsGrant()
.then(=> (data) {
console.log('The access token expires in ' + data.body['expires_in']);
console.log('The access token is ' + data.body['access_token']);
});
// using Promises through Promise, Q or when - get Elvis' albums in range [20...29]
spotifyApi.getArtistAlbums('43ZHCT0cAZBISjO8DG9PnE', {limit: 10, offset: 20})
.then(function(data) {
console.log('Album information', data);
}, function(err) {
console.error(err);
});
});
SpotifyWebApi.setPromiseImplementation(Q);
}
}
具体的な問題は何ですか? – jmargolisvt
私はコードを更新しました@jiargolisvt –