Google Calendar API (PHP)

Hey again,

Today I’m with a new php class. It’s for Google Calendar. Like other many Google API’s, this one doesn’t have the code for php, either. So I’ve written one.

With my new Google Calendar API PHP Class you can list your calendars, list events, add new event, delete events. Basically do everything that API offers.

Again, it’s very easy to use. It’s usage is similar to my other class Google Docs API Class.

I’m selling this one for $25.

Contact me if you are interested in. info [at] oktaykilic.com

Write a Comment (0)
Perma Link.

Google Alerts API (Python)

Hello again,

Thanks for your freat interest for my google alerts php class. (Found here: http://oktaykilic.com/programming/google-alerts-api-class/) I’ve coded it in Python and I’m selling it, too.

The price is $50.

Contact me on info [at] oktaykilic.com to buy it.

Write a Comment (0)
Perma Link.

Google Docs API Php Class

Hello guys,

I’m with another google api php class now. It’s for Google Docs service. As you know google provided only Java and Python codes for Google Docs API, so I’ve written a PHP class for you guys.

It’s much more simpler than Zend GData. It doesn’t need OpenID Login, defining scope or registering application to google. It’s very straight forward to use. You’ll just need to enter your email and password. That’s it!

Again, it’s very simple to use. With my Google Docs API Php Class you can list your documents, upload a new document, create an empty document, download a google document or delete a google document on your account. Basically, you can do everything that Google Docs API provides.

Usage is very simple:

First of you need to call my class:

$docs = new GoogleDocs();
$docs->email = ”; // your google account email address
$docs->password = ”; // your password

To list the documents in your account:

$docs->listDocs(); and this will return an array including all of your documents.

You can filter the list by document type like:

$docs->listDocs(’documents’); or $docs->listDocs(’sheets’);

You can search your documents by name:

$docs->listDocs(’all’, ‘my title’);

To upload a new document:

$docs->uploadDoc(’/path/to/your/document.doc’); or $docs->uploadDoc(’/path/to/your/document.xls’);

To download a document:

$docs->downloadDoc(’mydocument.doc’);

To delete a document:

$docs->deleteDoc(’mydocument.doc’);

And I’m selling this cool php class for only $35

Contact me at info[at]oktaykilic.com to buy it!

Write a Comment (0)
Perma Link.

Google Alerts API Class (JAVA)

Hello again,

Thanks for your freat interest for my google alerts php class. (Found here: http://oktaykilic.com/programming/google-alerts-api-class/) I’ve coded it in JAVA and I’m selling it, too.

The price is $50.

Contact me on info [at] oktaykilic.com to buy it.

Write a Comment (0)
Perma Link.

Google Alerts API Class (PHP)

Google announced a wonderful service called Google Alerts lately.

Unfortunately, Google hasn’t published an API for Google Alerts, yet. I know how frustrating is to search for an API and can’t find it. So I decided to code a PHP class to use Google Alerts programmatically.

You would be able to add alerts, delete alerts and list alerts by my Google Alerts API Class.

It is very simple to use. To use it;

1. Include it to your PHP code:
include('alerts.php');

2. Call the class:
$alerts = new GoogleAlerts();

3. Define the username and password of your Google account:
$alerts->username = '';
$alerts->password = '';

And you would be able to list your alerts, add new alert and delete an alert now.

To List Google Alerts:

$alerts->listAlerts();

This code will return an array like this:

Array
(
[0] => Array
(
[s] => AB2Xq4hCMYO4rAnGLE_dX_g1s0VFPOvDsES-Y5Y
[string] => oktay kilic
[feed] => http://www.google.com/alerts/feeds/16833094743212089380/8815252463603277810
)[1] => Array
(
[s] => AB2Xq4hybmv6-xhVJt-7zp61iRiEQ5aIAdoMHhI
[string] => test
[feed] => http://www.google.com/alerts/feeds/16833094743212089380/8505692390365346203
))To Add A New Alert:

$alerts->addAlert('test');

This code will return the info of the added alert like list function.

To Delete A Google Alert:

$alerts->deleteAlert('AB2Xq4hCMYO4rAnGLE_dX_g1s0VFPOvDsES-Y5Y‘); // s value

You see it’s very simple.

I’m selling the Google Alerts API Class for only $25, please contact me to buy it. I can also integrate the code in your application.

My email address is: info [at] oktaykilic.com

P.S: You need to clear your cookie.txt file contents to use another google account .

Write a Comment (1)
Perma Link.
Next Page »