Answer the question
In order to leave comments, you need to log in
Is it possible to send a message with a plus (+) to the VK API?
Here I want to send a request for a post using Ajax:
$.ajax({
url: 'https://api.vk.com/method/messages.send?access_token=ТОКЕН&v=5.68&message=Ответ: 5+5=10&chat_id=1',
method: 'POST',
dataType: 'JSONP',
success: function(data){
console.log(data);
}
});
Answer the question
In order to leave comments, you need to log in
$.ajax({
url: 'https://api.vk.com/method/messages.send',
method: 'POST',
data: {
access_token: "ТОКЕН",
v: 5.68,
message: "Ответ: 5+5=10",
chat_id: 1
},
dataType: 'JSONP',
success: function(data){
console.log(data);
}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question