Clickmycom-TK / phpgooglevoice

Automatically exported from code.google.com/p/phpgooglevoice
0 stars 0 forks source link

Forbidden Error 403 #7

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What is the expected output? What do you see instead?

-Moved Temporarily
-The document has moved here.
-Then a link to a page that says that error

What version of the product are you using? On what operating system?
-Ubuntu 13.04

Original issue reported on code.google.com by Tu4...@gmail.com on 7 May 2013 at 12:08

GoogleCodeExporter commented 9 years ago
Hello Leon's
Good Day, now 11:38am(GMT -3:00)

My name is Leandro Alexandre, Brazil We are the PHP Community.
I've been informed email that since this error also happened to me.

I tried to identify the problem, most unfortunately found ....
I noticed that there are some restrictions on international google as blocking 
security account.
I do not know if this happened to you.

As creator of the php class, you could help us clarify on this error please?

Sincerely;

Leandro Alexandre
Member PHP Community Brasil
São Paulo, Brazil
leandro@datacod.com.br

Original comment by data...@datacod.com.br on 8 Sep 2013 at 2:49

GoogleCodeExporter commented 9 years ago
I get this issue as well.

Original comment by thewindo...@gmail.com on 20 Oct 2013 at 1:36

GoogleCodeExporter commented 9 years ago
Sorry this was quite some time ago and I've forgotten what the exact error was. 
I remember that I ended up switching to a whole other API due to it though. But 
it wasn't quite as good so I ended up moving to a nodejs based API.

Original comment by Tu4...@gmail.com on 26 Oct 2013 at 5:24

GoogleCodeExporter commented 9 years ago
I had this same problem and realized that it was because I was using two-factor 
authentication, try disabling that and see if things are working.

Original comment by mburk...@gmail.com on 5 Feb 2014 at 11:20

varunjoshi12 commented 9 years ago

Hi, I have made userlogin Web-api in php for android device and i have tested that api on hurl.it solution it works fine on hurl but it creates forbidden error from device side please help me to solve this problem.

code:

function sendResponse($status = 200, $body = '', $content_type = 'application/json') { $status_header = 'HTTP/1.1 ' . $status . ' ' . getStatusCodeMessage($status); header($status_header); header('Content-type: ' . $content_type); echo $body; }

class socialapp {

private $db;

function __construct() {

/* $this->db = mysql_connect('localhost', 'root','');
  mysql_select_db('socialworld',$this->db) or die(mysql_error()); */

}