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.

This is my gonderdb.class.php:

   <?php 
Class GonderDB Extends DB
{
    public function validate_user($id)
    {
        $sql = "SELECT id,facebookid FROM users WHERE facebookid='$id'";
        $query = mysql_query($sql,parent::BaglanDB());
        $count = mysql_now_rows($count);

        if ($count<1)
        {
            return true;
        }
        else
        {
            return false;
        }
    }

    public function get_user($id,$burc)
    {
        $sql = "SELECT * FROM users WHERE facebookid='$id' ";
        $query = mysql_qıuery($sql,parent::BaglanDB());

        while ($rs = mysql_fetch_assoc($query))
        {
            $data[] = $rs;
        }

        return $data;
    }

    public function publish_post_first($user)
    {
            try 
            {
                $array = array('link' => 'http://apps.facebook.com/gunlukburcpaylas/',
                'description' => 'Profilinizde günlük burcunuzu otomatik paylaşın..'
                );

                if ($facebook->api('/me/feed/', 'post', $array))
                {
                    return true;
                }
                else
                {
                    return false;
                }
            } 
            catch (FacebookApiException $e) 
            {
                    return $e->getMessage();
            }
    }


    function publish_post_everyday($fbid = false, $aciklama = false)
    {
        try 
        {
            $array = array('link' => 'http://apps.facebook.com/gunlukburcpaylas/',
            'description' => $aciklama
            );

            if ($statusUpdate = $facebook->api('/' . $fbid . '/feed/', 'post', $array))
            {
                return true;
            }
            else
            {
                return false;
            }
        } 
        catch (FacebookApiException $e) 
        {
                return $e->getMessage();
        }
    }

}

?>

And This is my index.php:

<?php
ob_start();

require 'src/facebook.php';

$facebook = new Facebook(array(
    'appId'  => '258561857493875',
    'secret' => 'jjjklpkpokpokpojpoj',
    'cookie' => true
));
$user = $facebook->getUser();


require 'classes/db.class.php';
require 'classes/ekledb.class.php';
require 'classes/gonderdb.class.php';
$gonder = new GonderDB();
$ekle = new EkleDB();

if($user) 
{ 
   echo $gonder->publish_post_first(); // DONT WORK <-----
}
else
{
    $url = 'https://www.facebook.com/dialog/oauth?client_id=258561857493875&redirect_uri=http://apps.facebook.com/gunlukburcpaylas/&scope=email,read_stream,publish_stream,offline_access';
    echo "<center><a href='". $url ."'><h1>Giriş yap</h1></a></center>";
}


?>

$gonder->publish_post_first function dont work.. Why? And i cant see error how i should for work?

share|improve this question
Where do you declare you class gonder? It's not shown here – DSchultz Jul 31 '11 at 22:40
updated........ – Yusuf ali Jul 31 '11 at 22:54

1 Answer

up vote 1 down vote accepted

You need to pass in the $user.

So, $gonder->publish_post_first(); should be $gonder->publish_post_first($user);

share|improve this answer
thank.. i used "global" :) – Yusuf ali Aug 1 '11 at 0:44

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.