Coder Social home page Coder Social logo

webpack integration about musixmatch-sdk HOT 1 OPEN

musixmatch avatar musixmatch commented on July 17, 2024
webpack integration

from musixmatch-sdk.

Comments (1)

Bek81 avatar Bek81 commented on July 17, 2024

Hi,

after the build using "javascript-client-patch.zip", i copied the bundle.js generated in my project file "libs/musixmatchapi/index.js" and then I imported that in my HTML:

<script type="text/javascript" src="libs/musixmatchapi/index.js"></script>.

Seems to be loaded correctly.

In my JS, I tried (with my own API KEY), following your example:

let defaultClient = MusixmatchApi.ApiClient.instance;

console.log(defaultClient);

let key = defaultClient.authentications['key'];
console.log(key);
key.apiKey = "25bf7fc9ee28d0208d75d522c56e1422";
var opts = {
    format: "jsonp", // {String} output format: json, jsonp, xml.
};
let trackId= 15449912; // {number}
(new MusixmatchApi.TrackApi()).trackGetGet(trackId, opts, (error, data, response) => {
    if (error) {
        console.error(error);
    } else if(response.text) {
        data = JSON.parse(response.text);
        console.log('Returned data:\n%s' ,JSON.stringify(data,null,2));
    }
    else {
        throw new Error('bad response')   
    }
} );

and these are the responses:

screen shot 2018-07-25 at 11 35 59

If I try
format: "json"
the response is cross origin.

Another question: where do I find the documentation for these APIs? For the other methods apart from "trackGetGet"?

from musixmatch-sdk.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.