We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Create a new session and access token. This is like login.
POST https://your-host/your-mt-api.cgi/v1/authentication
XMLHttpRequest: A XMLHttpRequest object
api.authenticate({ username: "USERNAME", password: "PASSWORD", remember: true }, function(response) { if (response.error) { // Handle error return; } api.storeTokenData(response); api.listEntries(blogId, function(response) { // Do stuff }); });