I've modified the source to display additional debug messages:
static int parse_osp_reply(const char *reply, char **token, char **secret)
{
int i, rc;
int retval = 1;
char **rv = NULL;
rc = oauth_split_url_parameters(reply, &rv);
for (i = 0; i < rc; i++)
dbg("rv[%d]: %s\n", i, rv[i]);
qsort(rv, rc, sizeof(char *), oauth_cmpstringp);
[...]
and I get:
bti: parse_osp_reply: rv[0]: You must provide a valid URL or 'oob' in
oauth_callback.
So, it seems that bti doesn't provide a valid URL.
--
Vincent Lefèvre <[email protected]> - Web: <http://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]