Estoy trabajando en una aplicación en WordPress que permite a los usuarios iniciar sesión con sus cuentas de Twitter y luego los redirige a un formulario. Al enviar ese formulario, se envía un tweet al identificador de Twitter del usuario. estoy usando el de abraham twitteroauth
para implementar Twitter OAuth.
El código fuente de la plantilla redirigida después de un inicio de sesión exitoso en Twitter:
<pre>
<?php
/*
*Template Name: Callback
*/
?>
<?php
session_start();
require "twitteroauth/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth;
define('CONSUMER_KEY', "XXXXXXXXXXXXXXX");
define('CONSUMER_SECRET', "XXXXXXXXXXXXXX");
define('OAUTH_CALLBACK', " http://localhost/wordpress/index.php/callback/");
$request_token = [];
$request_token['oauth_token'] = $_SESSION['oauth_token'];
$request_token['oauth_token_secret'] = $_SESSION['oauth_token_secret'];
if (isset($_REQUEST['oauth_token']) && $request_token['oauth_token'] !== $_REQUEST['oauth_token'])
{
echo "Opps! Something went wrong!";
}
else
{
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $request_token['oauth_token'], $request_token['oauth_token_secret']);
$access_token = $connection->oauth("oauth/access_token", array("oauth_verifier" => $_REQUEST['oauth_verifier']));
//print_r($access_token);
$_SESSION['access_token'] = $access_token;
}
$access_token = $_SESSION['access_token'];
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);
//$user = $connection->get("account/verify_credentials");
//$response = $connection->post("statuses/update", array('status' => 'fsociety'))
//$response = $tmhOAuth->request('POST', $tmhOAuth->url('1.1/statuses/update'), array(
//'status' => 'Conceit to fall on parasol.'
?>
<script>
var count = 0
function addNewMessage(count)
{
if(count > 5)
{
window.alert("NO MORE THAN 5!");
}
else
{
var celeb = document.createElement("input");
celeb.type = "text";
celeb.name = "tweet" + count;
celeb.placeholder = "Tweet" + " " + count;
celebrity.appendChild(celeb);
var date = document.createElement("input");
date.type = "datetime-local";
date.name = "date" + count;
date.placeholder = "message-date" + " " + count;
celebrity.appendChild(date);
celebrity.appendChild(document.createElement("br"));
celebrity.appendChild(document.createElement("br"));
}
}
</script>
<form method = "POST" action = "">
<fieldset>
<a style = "color:red" onclick = "addNewMessage(++count)">Schedule a tweet</a>
<div id = "celebrity"/>
</fieldset>
<br>
<fieldset>
<input type="hidden" name="submitted" id="submitted" value="true" />
<?php wp_nonce_field( 'post_nonce', 'post_nonce_field' ); ?>
<button type="submit"><?php _e('Add Campaign', 'framework') ?></button>
</fieldset>
</form>
<?php
if ( isset( $_POST['submitted'] ))
{
$response = $connection->post("statuses/update", array('status' => 'fsociety'));
}
?>
</pre>
Al enviar el formulario, utilizo el de Abraham twitteroauth
para publicar un tweet en la línea de tiempo de Twitter del usuario, que he intentado implementar de la siguiente manera:
<?php
if ( isset( $_POST['submitted'] ))
{
$response = $connection->post("statuses/update", array('status' => 'fsociety'));
}
?>
Sin embargo, este es el error que estoy encontrando:
Fatal error: Uncaught exception 'Abraham\TwitterOAuth\TwitterOAuthException' with message 'This feature is temporarily unavailable' in /opt/lampp/htdocs/wordpress/wp-content/themes/twentyfifteen/tuto/twitteroauth/src/TwitterOAuth.php:137
Stack trace:
#0 /opt/lampp/htdocs/wordpress/wp-content/themes/twentyfifteen/tuto/callback.php(30): Abraham\TwitterOAuth\TwitterOAuth->oauth('oauth/access_to...', Array)
#1 /opt/lampp/htdocs/wordpress/wp-includes/template-loader.php(74): include('/opt/lampp/htdo...')
#2 /opt/lampp/htdocs/wordpress/wp-blog-header.php(16): require_once('/opt/lampp/htdo...')
#3 /opt/lampp/htdocs/wordpress/index.php(17): require('/opt/lampp/htdo...')
#4 {main}
thrown in /opt/lampp/htdocs/wordpress/wp-content/themes/twentyfifteen/tuto/twitteroauth/src/TwitterOAuth.php on line 137
Intenté depurar imprimiendo el $access_token
y de hecho obtengo un token único del proveedor de OAuth como se esperaba.
¿Qué parece estar mal con mi código y cómo podría evitar generar esa excepción?