php - Can't Log in with Facebook when I export my application -
i built app facebook sdk, working fine on emulator, when exported app run on mobile device, couldn't log in, frustrating because first app , thought working without errors. my login in works registering button too. when without account tries login, automatically creates account using data facebook. i'm using php insert data database, i'm calling function when tries log in: case "loginfb": facebook_func($_post['email'],$_post['name'],$_post['gender'],$_post['image']); my function calls query check if sent e-mail exists normal login, else, creates new account. function facebook_func($email,$name,$gender,$image){ $result = db_queries("select * users email='$email'"); $row = mysqli_fetch_array($result); if($row[16] == 1){ //row 16 check if account uses social network login if($row[0]){ //check if id exists on database echo $row[0]; online_func($row[3],$row...