Project

General

Profile

Actions

Bug #60713

closed

OAuth no longer works in 6.2

Added by Claus Harup almost 10 years ago. Updated over 9 years ago.

Status:
Closed
Priority:
-- undefined --
Assignee:
-
Category:
-
Target version:
-
Start date:
2014-08-01
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.5
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

I have had the following running smoothly in TYPO3 6.0 and 6.1:

include_once 'HTTP/OAuth/Consumer.php';
require_once 'HTTP/OAuth.php';
require_once 'HTTP/OAuth/Consumer/Request.php';
require_once 'HTTP/Request2.php';

// Set up HTTP request
$httpRequest = new HTTP_Request2;
$httpRequest->setHeader('Accept-Encoding', '.*');

// Set up OAuth consumer
$request = new HTTP_OAuth_Consumer_Request;
$request->accept($httpRequest);
$consumer = new HTTP_OAuth_Consumer($consumer_key, $consumer_secret, $access_token, $access_secret);
$consumer->accept($request);

.... but after upgrading to TYPO3 6.2 it fails on all the include and require parts above!?!?

Actions

Also available in: Atom PDF