Хочу отправить сообщение Вконтакте через API Авторизуюсь таким кодом: PHP: webbrowser1.navigate('http://api.vk.com/oauth/authorize?client_id=2712421&redirect_uri=http://api.vk.com/blank.html&response_type=token&display=wap'); затем вытягиваю оттуда access_token, и отправляю сообщение таким кодом: PHP: function UrlEncode(const s: AnsiString): string; var I: integer; begin Result := ''; for i := 1 to Length(S) do case S[i] of '%', ' ', '&', '=', '@', '.', #13, #10, #128..#255: Result := Result + '%' + IntToHex(Ord(S[i]), 2); else Result := Result + S[i]; end; end; procedure TForm1.Button1Click(Sender: TObject); begin memo1.Text:=idhttp1.Get('https://api.vkontakte.ru/method/messages.send.JSON?uid='+edit1.text+'&message='+URLEncode(ansitoutf8(edit2.Text)))+'&access_token='+edit3.Text; end; В ответ получаю: PHP: User authorization failed: no access_token passed. ПОЧЕМУ??? Подскажите что сделал не правильно?