I get the "Somthing wrong happened error" when using the Login with twitter oath I'm wondering what is wrong, I'm also using facebook api and it works fine.
here is my code:
<?php
require_once ('../includes/oAuth/twitter/twitteroauth.php');
require_once("../config/config_global.php");
require_once("../includes/bootstrap_frontend.php");
session_start();
$twitteroauth = new TwitterOAuth(YOUR_CONSUMER_KEY, YOUR_CONSUMER_SECRET);
// Requesting authentication tokens, the parameter is the URL we will be redirected to
$request_token = $twitteroauth- >getRequestToken('http://discountbomb.com/members/index/getTwitterData.php');
// Saving them into the session
$_SESSION['oauth_token'] = $request_token['oauth_token'];
$_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];
// If everything goes well..
if ($twitteroauth->http_code == 200) {
// Let's generate the URL and redirect
$url = $twitteroauth->getAuthorizeURL($request_token['oauth_token']);
header('Location: ' . $url);
} else {
// It's a bad idea to kill the script, but we've got to know when there's an error.
die('Something wrong happened.');
}
?>