Old 09/09/2009, 11:36 PM   #901 (permalink)
Member
 
Join Date: Aug 2009
Posts: 69
Likes: 0
Thanks: 22
Thanked 5 Times in 4 Posts

Default

Quote:
Originally Posted by L-Boogie View Post
Wow I'm lost does anybody know how I can get Googlevoice? I tried to sign up for it on google and it threw me some lame excuse, any tips or workarounds?
One can buy Google Voice Invitation from ebay for less than a dollar and receive them instantly in most of the times.
bnaik is offline   Reply With Quote
Old 09/09/2009, 11:44 PM   #902 (permalink)
Member
 
DNic's Avatar
 
Join Date: Jun 2009
Posts: 599
Likes: 0
Thanks: 174
Thanked 44 Times in 34 Posts

Default

I think webdial as default is best. I used VM way first and it was a royal pain to use IMO.
DNic is offline   Reply With Quote
Old 09/09/2009, 11:55 PM   #903 (permalink)
Member
 
Join Date: Aug 2009
Posts: 62
Likes: 0
Thanks: 1
Thanked 7 Times in 4 Posts

Default

Webdial is great in most situations... although I've noticed in spots with sketchy reception, that you may be able to successfully webdial, but the phone call connecting you may not come through, plus if you change your mind on the call and ignore the web call, you may end up with a blank voicemail.

I've actually switched back to using the voicemail dial, since I know if I can connect to voicemail then it'll go through. (I have bad reception at my house).
rastataoist is offline   Reply With Quote
Old 09/10/2009, 12:56 AM   #904 (permalink)
Member
 
L-Boogie's Avatar
 
Join Date: Jun 2009
Posts: 102
Likes: 0
Thanks: 3
Thanked 2 Times in 2 Posts

Default

Quote:
Originally Posted by bnaik View Post
One can buy Google Voice Invitation from ebay for less than a dollar and receive them instantly in most of the times.
Thanks, I just now went to ebay and bought my invite.
L-Boogie is offline   Reply With Quote
Old 09/10/2009, 07:18 AM   #905 (permalink)
Forum Leader
 
mamouton's Avatar
 
Join Date: Jan 2007
Location: Fort Worth, TX
Posts: 5,771
Likes: 5
Thanks: 795
Thanked 1,165 Times in 801 Posts

Default

Quote:
Originally Posted by rastataoist View Post
Webdial is great in most situations... although I've noticed in spots with sketchy reception, that you may be able to successfully webdial, but the phone call connecting you may not come through, plus if you change your mind on the call and ignore the web call, you may end up with a blank voicemail.

I've actually switched back to using the voicemail dial, since I know if I can connect to voicemail then it'll go through. (I have bad reception at my house).
I have noticed that if you change your mind after completeing the web dial, it will still dial the number you called but send it to your sprint voicemail with the lady talking.
mamouton is offline   Reply With Quote
Old 09/10/2009, 07:20 AM     Thread Author   #906 (permalink)
Member
 
flpalm's Avatar
 
Join Date: Jul 2009
Posts: 804
Likes: 0
Thanks: 32
Thanked 392 Times in 142 Posts

Default

Quote:
Originally Posted by mamouton View Post
I have noticed that if you change your mind after completeing the web dial, it will still dial the number you called but send it to your sprint voicemail with the lady talking.
Yeah, the best way to back out of a call once it is submitted to GV is to actually answer the call from Google and then immediately hang up. That works best for me although it may ring the other phone one time.
__________________
gDial Pro - Unofficial Google Voice app for Pre
You should follow me on twitter
Become a fan on Facebook
flpalm is offline   Reply With Quote
Old 09/10/2009, 07:42 AM   #907 (permalink)
Member
 
johnsongrantr's Avatar
 
Join Date: Aug 2009
Location: Indianapolis
Posts: 54
Likes: 0
Thanks: 9
Thanked 7 Times in 5 Posts

Default

I'm going to dig into this guy's script and attempt to figure out what he's doing. Looks like it's written in perl and I'm not too familiar with that language.
Google Voice Command Line Script | 0xdecafbad.com

looks like he seems to have gotten it to work, now just to figure out how
Quote:
To cancel a call placed through the web (or this script)

./googlevoice.pl cancel
Quote:
###
# Cancel a call
###
sub cancelcall {
$cookiejar = HTTP::Cookies->new();

$rnr_se = auth($cookiejar);

if (!defined $rnr_se) {
return;
} else {
my ($url, $client, $request, $response, $postdata);

$client = LWP::UserAgent->new();
$client->agent('Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11');
$client->timeout(30);
$client->cookie_jar($cookiejar);

$url = 'https://www.google.com/voice/call/cancel/';
$postdata = "outgoingNumber=undefined&forwardingNumber=undefined&cancelType=C2C&_rnr_se=$rnr_se";

$request = HTTP::Request->new(POST => $url);
$request->content_type('application/x-www-form-urlencoded');
$request->content($postdata);
$response = $client->request($request);

if ($response->is_success) {
print "Call cancelled\n";
} else {
print "Could not cancel the call ".$response->status_line."\n";
}
}
return;
}

Last edited by johnsongrantr; 09/10/2009 at 08:25 AM. Reason: fixed spelling of perl and added chuck of script that applies
johnsongrantr is offline   Reply With Quote
Old 09/10/2009, 02:16 PM   #908 (permalink)
Member
 
Join Date: Aug 2009
Posts: 4
Likes: 0
Thanks: 1
Thanked 0 Times in 0 Posts

Default SMS

How do I send a SMS with just a number not a phone book entry?
Belohamilton is offline   Reply With Quote
Old 09/10/2009, 02:22 PM     Thread Author   #909 (permalink)
Member
 
flpalm's Avatar
 
Join Date: Jul 2009
Posts: 804
Likes: 0
Thanks: 32
Thanked 392 Times in 142 Posts

Default

Quote:
Originally Posted by Belohamilton View Post
How do I send a SMS with just a number not a phone book entry?
You just dial the number on the keypad
__________________
gDial Pro - Unofficial Google Voice app for Pre
You should follow me on twitter
Become a fan on Facebook
flpalm is offline   Reply With Quote
Old 09/10/2009, 02:28 PM   #910 (permalink)
Member
 
Join Date: Aug 2009
Posts: 4
Likes: 0
Thanks: 1
Thanked 0 Times in 0 Posts

Default

Every time I type a number on the TO: location of the SMS page it sends me to my phone book.
Belohamilton is offline   Reply With Quote
Old 09/10/2009, 02:29 PM     Thread Author   #911 (permalink)
Member
 
flpalm's Avatar
 
Join Date: Jul 2009
Posts: 804
Likes: 0
Thanks: 32
Thanked 392 Times in 142 Posts

Default

Quote:
Originally Posted by Belohamilton View Post
Every time I type a number on the TO: location of the SMS page it sends me to my phone book.
Don't tap the To area. Just start typing on the keypad and it will start running a search, but the top selection is the phone number you are dialing.
__________________
gDial Pro - Unofficial Google Voice app for Pre
You should follow me on twitter
Become a fan on Facebook
flpalm is offline   Reply With Quote
Thanked By: Belohamilton
Old 09/10/2009, 04:09 PM     Thread Author   #912 (permalink)
Member
 
flpalm's Avatar
 
Join Date: Jul 2009
Posts: 804
Likes: 0
Thanks: 32
Thanked 392 Times in 142 Posts

Default

New version

v0.6.9
-All new users default to webdial
-Help messages in the preference menu for non-self explanatory items
-New voicemails cause a notification message
-Check for internet connection before updating data
-Change default delay to 3 for maximum compatibility
-Allow 7 digit dialling (Assumes the prefix of your GV number)
-Fix for bug when cancelling from address book displaying cancel in the TO area
-GUI fixes to fit within the Palm UI recommendations
__________________
gDial Pro - Unofficial Google Voice app for Pre
You should follow me on twitter
Become a fan on Facebook
flpalm is offline   Reply With Quote
Thanked By: mrclaiborne
Old 09/10/2009, 04:39 PM   #913 (permalink)
Member
 
Join Date: Sep 2008
Location: Dallas, Texas
Posts: 28
Likes: 0
Thanks: 2
Thanked 3 Times in 3 Posts

Default

Just Installed. Looks Good.
__________________
Thanks,

mrclaiborne
DaGreatOne
mrclaiborne is offline   Reply With Quote
Old 09/10/2009, 05:00 PM   #914 (permalink)
Member
 
DNic's Avatar
 
Join Date: Jun 2009
Posts: 599
Likes: 0
Thanks: 174
Thanked 44 Times in 34 Posts

Default

Great list of updates!
Also just got Pick 3 added with GV as one of the numbers
DNic is offline   Reply With Quote
Old 09/10/2009, 05:57 PM   #915 (permalink)
Member
 
jack87's Avatar
 
Join Date: Jun 2009
Location: Salt Lake City, Ut
Posts: 1,225
Likes: 9
Thanks: 78
Thanked 179 Times in 128 Posts

Default

Quote:
Originally Posted by mamouton View Post
@socalgirl.
You can use gdial (google voice) as unlimited if you have Sprint's pick 3/5 plan and have given sprint your google voice number for one of your pick 3/5. If you use the web dial, then you will get a phone call from you gv number and will connect you to the call you are making. If you dial straight through it will take you to your voice mail and complete the dialing of the numbers and you will get a message 'this is a free call'.

You have to have the Pick 3/5 plan from sprint or you will be charged for all calls like a regular call.

To make sure your incoming calls are free with google voice, you have to check the option to display gv number versus the number of the actual person calling, but if you press #1 when you get the call, you are able to screen the call and see who it is calling and decided if you want to talk to them or not.

I don't think it will be free in another country, I accidentally dialed 11 numbers one time and it gave me a message that the call would be 3cents a minute, I immediately hung up and made the phone call again.
With gv I now have unlimited calling and it is free, I have the lowest plan sprint can offer with the minutes (450) so it makes up for the unlimited incoming calls I had to get rid of for the Pre.

I hope this helps, if you have any other questions you can pm me , so we don't take this thread off topic.

Gdial pro has enabled me to make my gv number my primary number. I very rarely use the regular dialer now.
they made me take off unlimited incoming to made me mad.. but i had skype to go in mind when they offered pick 5 so i was good to go than i discovered google voice and here we are
__________________
MatterOfFactJack
jack87 is offline   Reply With Quote
Old 09/10/2009, 05:59 PM   #916 (permalink)
Member
 
jack87's Avatar
 
Join Date: Jun 2009
Location: Salt Lake City, Ut
Posts: 1,225
Likes: 9
Thanks: 78
Thanked 179 Times in 128 Posts

Default

flpalm are you in the app catalog now? i am testing leak 1.2 cant view it
__________________
MatterOfFactJack
jack87 is offline   Reply With Quote
Old 09/10/2009, 07:22 PM   #917 (permalink)
Member
 
oddlou's Avatar
 
Join Date: May 2006
Location: Los Angeles
Posts: 1,140
Likes: 0
Thanks: 96
Thanked 164 Times in 105 Posts

Default

Quote:
Originally Posted by jack87 View Post
flpalm are you in the app catalog now? i am testing leak 1.2 cant view it
It sure is! Congrats to Fpalm are in order!! Great app, now in the official app catalog!
oddlou is offline   Reply With Quote
Old 09/10/2009, 07:35 PM   #918 (permalink)
Member
 
OneDeep's Avatar
 
Join Date: Apr 2009
Location: Indiana
Posts: 1,514
Likes: 0
Thanks: 45
Thanked 130 Times in 105 Posts

Default

The verison in the app catalog is 6.8.. But flpalm I gave you 5 stars
__________________
--Marvin
OneDeep is offline   Reply With Quote
Old 09/10/2009, 07:37 PM   #919 (permalink)
Member
 
jack87's Avatar
 
Join Date: Jun 2009
Location: Salt Lake City, Ut
Posts: 1,225
Likes: 9
Thanks: 78
Thanked 179 Times in 128 Posts

Default

the version in app catalog is different it only gets contacts from your google contacts where as the homebrew one gets all your contacts in synergy... great job Flpalm!! congratulations!
__________________
MatterOfFactJack
jack87 is offline   Reply With Quote
Thanked By: maqk
Old 09/10/2009, 07:39 PM   #920 (permalink)
Member
 
johnsongrantr's Avatar
 
Join Date: Aug 2009
Location: Indianapolis
Posts: 54
Likes: 0
Thanks: 9
Thanked 7 Times in 5 Posts

Default

Quote:
Originally Posted by oddlou View Post
It sure is! Congrats to Fpalm are in order!! Great app, now in the official app catalog!
yes congrats fpalm!
johnsongrantr is offline   Reply With Quote

 

Content Relevant URLs by vBSEO 3.6.0