php - crate contact importer for my web site from yahoo for now -
i try create contact importer website
read page: http://developer.yahoo.com/oauth/guide/oauth-requesttoken.html create code this:
<?php $time = time(); $key = 'dj0yjmk9c21mvnlunnlpctfwjmq9wvdrou5twmtwvve0tm0wbwnhbzlnvekytmpree1qyzjnzy0tjxxxxxx'; $secret = '58b907a5a67caf9cd837821c53fxxxxxxxx'; header("location: https://api.login.yahoo.com/oauth/v2/get_request_token?oauth_nonce=ce2130523f788f313f76314ed3965ea6&oauth_timestamp=$time&oauth_consumer_key=$key&oauth_signature_method=plaintext&oauth_signature=$secret&oauth_version=1.0&xoauth_lang_pref=\"en-us\"&oauth_callback=\"http://mysite/yahoo.php\"");
?>
not found page when go yahoo ! problem?
problem solved
must use firebug see error oauth because when wrong code
yahoo return 401 error , see not found page
firebug show code problem
, can solve
Comments
Post a Comment