Results 1 to 3 of 3

Thread: PHP Gmail Contacts Import - Help

  1. #1
    Join Date
    Dec 2007
    Posts
    123
    Thanks
    17
    Thanked 1 Time in 1 Post

    Question PHP Gmail Contacts Import - Help

    Hi

    So I found a script on the internet that actually imports the contacts of your gmail once you provide a correct gmail username / password.


    I have attached 2 zip files with this post.

    working_example.zip - Contains the working example of the script. Returns the contacts in an array() format on success.

    not_working_example.zip - I wanted to implement this script using class. So I went ahead and wrapped the code in a class and created an instance of the class, but when I tried to call the method, it generated the following error:

    Warning: curl_exec() [function.curl-exec]: Could not call the CURLOPT_HEADERFUNCTION in D:\not_working_example\gmail.api.include.php on line 36

    Warning: curl_exec() [function.curl-exec]: Could not call the CURLOPT_HEADERFUNCTION in D:\not_working_example\gmail.api.include.php on line 65



    Please, if anyone can help me figuring out the issue, I will be greatful.

    I am guessing this has something to do with scopes in OOP, but not sure what....pls help


    Many thanks

  2. #2
    Join Date
    Mar 2008
    Posts
    122
    Thanks
    17
    Thanked 5 Times in 5 Posts

    Default

    This will help you:
    http://curl.haxx.se/

  3. #3
    Join Date
    Dec 2007
    Posts
    123
    Thanks
    17
    Thanked 1 Time in 1 Post

    Default

    Hi
    Thanks for the reply. I got the answer. I needed to replace that line with this one..


    curl_setopt($ch, CURLOPT_HEADERFUNCTION, array($this, 'read_header'));

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •