redirect_uri and how to host callback.html on SoundCloud?
问题 I am trying to access Soundcloud from a local HTML page on my laptop. I am stuck at the part of hosting "callback.html" as a redirect_uri. The script I am trying to run is the basic Authenication JavaScript from the Soundcloud documentation page: <script src="http://connect.soundcloud.com/sdk.js"></script> <script> // initialize client with app credentials SC.initialize({ client_id: 'my_client_id', redirect_uri: 'http://127.0.0.1/Users/Maria/Documents/SoundcloudClient/callback.html' }); //