Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Jaisen Mathai twitter library and worked fine in PHP without code-igniter framework. now, I'm upgrading existing website to codeigniter 2.0 and unable to work with twitter.

Here is how I'm trying to do:
copied EpiCurl.php, EpiOAuth.php,EpiTwitter.php into library folder

<? php if(!defined('BASEPATH')) exit('No direct script access allowed');
   //to make it compatible with code-igniter (as per naming conventions of codeigniter).

In a controller I'm trying to load these libraries:

$this->load->library('EpiCurl'); // here the code excution breaks
$this->load->library('EpiOAuth');
$this->load->library('EpiTwitter');

now when i read class(EpiCurl), i came to know that it can't be instantiated using new keyword.

When I debugged my application I found that loader is trying to instantiate library using new keyword and after that I'm getting exception from EpiCurl.php

This class cannot be instantiated by the new keyword.
You must instantiate it using: $obj = EpiCurl::getInstance();

So, anybody there to help me out on how to load library class using getInstance() method instead of new keyword.

share|improve this question

1 Answer

See Below URL I think it very help full to you.

codeigniter-twitter

https://github.com/elliothaughin/codeigniter-twitter

Twitter API for CodeIgniter

http://jamesgiang.wordpress.com/2010/05/12/twitter-api-for-codeigniter/

Integrating With Twitter API In CodeIgniter

http://amiworks.co.in/talk/integrating-twitter-api-with-codeigniter/

share|improve this answer
Thanks for your reply. Regarding#1- im not sure it can serve my purpose, #2 - i also tried to use this library but first im unable to download the library file (404 error),#3 it doesn't serve my purpose. my purpose here is on my website user can login with twitter with oauth and then i should show his tweets on my site.. now i'm using Jaisen Mathai async library – Venkat Krishna Prasad Chintama Aug 30 '12 at 7:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.