Hello,
I'm experimenting with the Gmailer gem.
I'd like to extend it to be able to pull down Contact *groups*. Currently,
it does "frequently mailed" and "all".
Does anyone know where to locate such API info?
Thanks,
Dave
Hello,
I'm experimenting with the Gmailer gem.
I'd like to extend it to be able to pull down Contact *groups*. Currently,
it does "frequently mailed" and "all".
Does anyone know where to locate such API info?
Thanks,
Dave
Dave,
I assume that you've checked here:
I didn't see a specific GMail API
Chase
On 5/5/07, David Alm <david.alm@googleswonderfulgmail.com> wrote:
Hello,
I'm experimenting with the Gmailer gem.
I'd like to extend it to be able to pull down Contact *groups*. Currently,
it does "frequently mailed" and "all".Does anyone know where to locate such API info?
Thanks,
Dave
Hi,
From: "David Alm" <david.alm@googleswonderfulgmail.com>
Reply-To: ruby-talk@ruby-lang.org
To: ruby-talk@ruby-lang.org (ruby-talk ML)
Subject: Gmailer
Date: Sun, 6 May 2007 04:00:04 +0900Hello,
I'm experimenting with the Gmailer gem.
I'd like to extend it to be able to pull down Contact *groups*. Currently,
it does "frequently mailed" and "all".Does anyone know where to locate such API info?
Thanks,
Dave
Currently, Gmailer supports "frequently mailed" and "all".
You can get contact list like this:
GMailer.connect(name, pwd) do |g|
puts "Your frequently used addresses:"
g.fetch(:contact=>"freq").each do |item|
puts "Name: #{item.name} Email: #{item.email}"
end
puts "Your all addresses:"
g.fetch(:contact=>"all").each do |item|
puts "Name: #{item.name} Email: #{item.email}"
end
end
The next version will support user defined contact groups.
Regards,
Park Heesob
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
I probably mailed that last comment too soon.
Do you mean about the gmailer gem? http://raa.ruby-lang.org/project/gmailer/
On 5/5/07, Chase Southard <chase.southard@gmail.com> wrote:
Dave,
I assume that you've checked here:
Usługi i narzędzia dla programistów – Google dla programistów | Google for DevelopersI didn't see a specific GMail API
Chase
On 5/5/07, David Alm <david.alm@googleswonderfulgmail.com> wrote:
>
> Hello,
>
> I'm experimenting with the Gmailer gem.
>
> I'd like to extend it to be able to pull down Contact *groups*.
> Currently,
> it does "frequently mailed" and "all".
>
> Does anyone know where to locate such API info?
>
> Thanks,
> Dave
>