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 have saved my account Youtube access_token in my database and now I want to get that token from my database and post it using Curl I am using AJAX to post Youtube api, in my youtubeeapi.php I have put code something like this but its not working,

This one is working : 'Authorization: Bearer "ya29.AHES6Zenter code hereTdlySWB5UMS1tO5u1XvYDEHejMmHHQv-yEG0X8U2k"'

When I do like this

'Authorization: Bearer "'.$tokens[1].'"'

Can any body tell me what wrong with it

<?php

session_start();
include "config.php";

if ($_POST['token'] == $_SESSION['token']) {
if (!connectDB())
die('Could not connect to the database: ' . mysql_error());

$access_token = $_POST['token'];
$post_id = $_POST['postID'];

print_r($tokens);
echo $post_id;

$query = mysql_query("SELECT * FROM likers");

if (mysql_num_rows($query) > 0) {
while ($tokens = mysql_fetch_array($query)) {
if ($tokens[1] != $access_token && $tokens[0] != '100000192275033') {

$message_xml='<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns="http://www.w3.org/2005/Atom"
       xmlns:yt="http://gdata.youtube.com/schemas/2007">
  <yt:rating value="like"/>
</entry>'; 
$access_tokens=$tokens[1];
$v = $_GET['id'];
$t = $tokens[1];
$key="AIzaSylEovXJRVI8qq51v18rnAK4gxE";
//$header = array('Content-Type: application/atom+xml', 'Content-Length: ' . strlen($message_xml),  'Authorization: Bearer "' . $access_token . '"', 'GData-Version: 2', 'X-GData-Key: key=' . $key);
//$headers = array('Content-Type: application/atom+xml', 'Content-Length: ' . strlen($message_xml), 'Authorization: Bearer ' . $tokens[1] . '', 'GData-Version: 2', 'X-GData-Key: key=' . $key);

$header = array('Content-Type: application/atom+xml', 'Content-Length: ' . strlen($message_xml), 'Authorization: Bearer ' . $access_token , 'GData-Version: 2', 'X-GData-Key: key=' . $key);
$headers = array('Content-Type: application/atom+xml', 'Content-Length: ' . strlen($message_xml), 'Authorization: Bearer "ya29.AHES6ZTdlySWB5UMS1tO5u1XvYDEHejMmHHQv-yEG0X8U2k"', 'GData-Version: 2', 'X-GData-Key: key=' . $key);

$ch = curl_init("https://gdata.youtube.com/feeds/api/videos/$post_id/ratings");
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS, "$message_xml");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
echo $result;
print_r($tokens);
}
}
}
mysql_close($conms);
}
?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.