<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Social</title>
		<description>RSS feeds for Social</description>
		<link>http://developer.yahoo.com/forum/Social</link>
		<pubDate>Tue, 21 May 2013 18:51:16 -0700</pubDate>
		<atom:link href="http://developer.yahoo.com/forum/feed" rel="self" type="application/rss+xml" />
		<ttl>99</ttl>
		<item>
			<title><![CDATA[Sorry! There is an error with the request]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Sorry-There-is-an-error-with/1369050357670-5e03cae5-290a-4ffb-bf76-eedb98fde74b</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Sorry-There-is-an-error-with/1369050357670-5e03cae5-290a-4ffb-bf76-eedb98fde74b/1369050357670</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=COIK435CZRIB65DD7FV22WEJ5A">Abhi</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>I am trying to fetch yahoo contacts of user who visits my site, to invite them, for that i tried to implement the yahoo official <a rel="nofollow" href="https://github.com/yahoo/yos-social-php5">PHP SDK</a> to fetch contacts, but when i implemented it and tried to run the example, it says</p><pre><code>Sorry! There is an error with the request we received from the website you are trying to use. Please try again in a few minutes. If this error persists please contact the site administrator. Learn more..</code></pre><p>I don't understand why it is saying so, when my request is fine as much as i have searched:</p><p><a rel="nofollow" href="https://open.login.yahooapis.com/openid/op/auth?openid.ns=http&gt;://specs.openid.net/auth/2.0&amp;openid.claimed_id=&lt;http://specs.openid.net/auth/2.0/identifier_select&amp;openid.identity=http&gt;://specs.openid.net/auth/2.0/identifier_select&amp;openid.realm=&lt;http://www.bitgiftingtest.com/mytest/Yahoo&amp;openid.ui.mode=popup&amp;openid.return_to=www.bitgiftingtest.com/mytest/Yahoo&gt;?close=true&amp;openid.mode=checkid_setup&amp;openid.assoc_handle=dc4p446315bb9sv5m0lqq91g70&amp;openid.ns.ui=&lt;http://specs.openid.net/extensions/ui/1.0&amp;openid.ui.icon=true&amp;openid.ui.language=en&amp;openid.ns.ext1=http&gt;://openid.net/srv/ax/1.0&amp;openid.ext1.mode=fetch_request&amp;openid.ext1.type.email=&lt;http://axschema.org/contact/email&amp;openid.ext1.type.first=http&gt;://axschema.org/namePerson/first&amp;openid.ext1.type.last=&lt;http://axschema.org/namePerson/last&amp;openid.ext1.type.country=http&gt;://axschema.org/contact/country/home&amp;openid.ext1.type.lang=&lt;http://axschema.org/pref/language&amp;openid.ext1.required=email&gt;,first,last,country,lang&amp;openid.ns.oauth=&lt;http://specs.openid.net/extensions/oauth/1.0&amp;openid.oauth.consumer=dj0yJmk9aWlHWThHUTlZQ2Y2JmQ9WVdrOVVscFhZbU5GTldrbWNHbzlNVEV3TmpNMk16azJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD1iMg--&amp;xopenid_lang_pref=en">this is my request</a></p><p>I have searched a lot and found <a rel="nofollow" href="http://developer.yahoo.com/forum/OpenID-General-Discussion/Newbie-help-OpenID-OAuth-Hybrid-error/1269886890000-72d5ae67-3136-3f54-bb33-8193f202c3da">here</a> that we need to pass openid.claimed_id too along with openid.identity, i am passing that too but no success.</p><p>Please help me to figure what's wrong with the request.</p>]]></description>
			<dc:creator>Abhi</dc:creator>
			<pubDate>Mon, 20 May 2013 04:45:57 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Add contact using ContactAPI]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Add-contact-using-ContactAPI/1266253937000-8b15089b-e16e-3719-af5d-c2a8cafd4111</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Add-contact-using-ContactAPI/1266253937000-8b15089b-e16e-3719-af5d-c2a8cafd4111/1368984387674</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=WZD33IGACBD4EDALYAHOKG2YSA">daro Renshi</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>The problem is in the YOSAccessToken implementation, every time you get the token from the dictionary stored in NSUserDefaults, is calculating expired date with the current date and then never expires, that is the error...</p><p>Replace the code with this and works like a charm.</p><pre><code> + (YOSAccessToken *)tokenFromStoredDictionary:(NSDictionary *)tokenDictionary{    NSInteger tokenExpires = [[tokenDictionary valueForKey:@"tokenExpires"] intValue];    NSInteger authExpires = [[tokenDictionary valueForKey:@"authExpires"] intValue];    NSDate *dateTokenExpires = [tokenDictionary objectForKey:@"tokenExpiresDate"];    NSDate *dateAuthExpires = [tokenDictionary objectForKey:@"authExpiresDate"];    YOSAccessToken *theToken = [[YOSAccessToken alloc] initWithKey:[tokenDictionary valueForKey:@"key"]                                                         andSecret:[tokenDictionary valueForKey:@"secret"]];    [theToken autorelease];    [theToken setGuid:[tokenDictionary valueForKey:@"guid"]];    [theToken setSessionHandle:[tokenDictionary valueForKey:@"sessionHandle"]];    [theToken setTok<tokenexpires>];    [theToken setAu<authexpires>];    [theToken setTokenEx<datetokenexpires>];    [theToken setAuthEx<dateauthexpires>];    if([tokenDictionary valueForKey:@"consumer"]) {        [theToken setConsumer:[tokenDictionary valueForKey:@"consumer"]];    }    return theToken;}#pragma mark -#pragma mark Public- (NSMutableDictionary *)tokenAsDictionary{    NSMutableDictionary *tokenDictionary = [[NSMutableDictionary alloc] init];    [tokenDictionary autorelease];    [tokenDictionary <self.key> forKey:@"key"];    [tokenDictionary <self.secret> forKey:@"secret"];    [tokenDictionary <self.guid> forKey:@"guid"];    [tokenDictionary <self.sessionhandle> forKey:@"sessionHandle"];    [tokenDictionary setObject:[NSNumber numb<self.tokenexpires>] forKey:@"tokenExpires"];    [tokenDictionary setObject:[NSNumber numb<self.authexpires>] forKey:@"authExpires"];    [tokenDictionary setObject:[NSDate dateWithTimeInterva<self.tokenexpires>] forKey:@"tokenExpiresDate"];    [tokenDictionary setObject:[NSDate dateWithTimeInterva<self.authexpires>] forKey:@"authExpiresDate"];    if(self.consumer) [tokenDictionary <self.consumer> forKey:@"consumer"];    return tokenDictionary;}</self.consumer></self.authexpires></self.tokenexpires></self.authexpires></self.tokenexpires></self.sessionhandle></self.guid></self.secret></self.key></dateauthexpires></datetokenexpires></authexpires></tokenexpires></code></pre>]]></description>
			<dc:creator>daro Renshi</dc:creator>
			<pubDate>Sun, 19 May 2013 10:26:27 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: New dialog:  Requires to Enter Code]]></title>
			<link>http://developer.yahoo.com/forum/Social-Directory-API/New-dialog-Requires-to-Enter/1240856599000-5a22b8a9-5931-37f4-8bb1-640354bee5ba</link>
			<guid>http://developer.yahoo.com/forum/Social-Directory-API/New-dialog-Requires-to-Enter/1240856599000-5a22b8a9-5931-37f4-8bb1-640354bee5ba/1368777346057</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=C2ZQ4A6OQR2QW52IIVXDZRYCLI">Srdjan</a> in <a href="http://developer.yahoo.com/forum/Social-Directory-API">Social Directory API</a>

<p>Any feedback for this issue?</p>]]></description>
			<dc:creator>Srdjan</dc:creator>
			<pubDate>Fri, 17 May 2013 00:55:46 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: How to Get "API Key" for local dev environment]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/How-to-Get-API-Key-for/1280954601000-34a4e5ca-e871-3868-bd7b-499e4d4fa84c</link>
			<guid>http://developer.yahoo.com/forum/Contacts/How-to-Get-API-Key-for/1280954601000-34a4e5ca-e871-3868-bd7b-499e4d4fa84c/1368623054457</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=O2JGCPRVDG3632SPUIJH2AIYJA">prabhakaran</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>dsds</p>]]></description>
			<dc:creator>prabhakaran</dc:creator>
			<pubDate>Wed, 15 May 2013 06:04:14 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Doubt]]></title>
			<link>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc</link>
			<guid>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc/1368540058568</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=PQIZSB5OBQHUO7DUBOYD3U5ACQ">duzins</a> in <a href="http://developer.yahoo.com/forum/Updates">Updates</a>

<p><a rel="nofollow" href="http://help.yahoo.com">http://help.yahoo.com</a> <br><br>1. Click on the product (in your case, Mail) <br>2. In the right hand side, click on Locked Account<br> 3. If that doesn't help, click Get Help to contact the customer service agencts</p>]]></description>
			<dc:creator>duzins</dc:creator>
			<pubDate>Tue, 14 May 2013 07:00:58 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Doubt]]></title>
			<link>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc</link>
			<guid>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc/1368538448124</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=G45X4QADKARU5YRGE4ICR5BDLU">jhcpachá</a> in <a href="http://developer.yahoo.com/forum/Updates">Updates</a>

<p>Thank's for your answer, since the day I send my first ask for help to today, I already need to change the password again.I can't find the link to contact Yahoo, where is it? can you help me on this matter?Thank's again,</p><p>Hlio Pacha</p>]]></description>
			<dc:creator>jhcpachá</dc:creator>
			<pubDate>Tue, 14 May 2013 06:34:08 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Doubt]]></title>
			<link>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc</link>
			<guid>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc/1368455905359</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=PQIZSB5OBQHUO7DUBOYD3U5ACQ">duzins</a> in <a href="http://developer.yahoo.com/forum/Updates">Updates</a>

<p>Changing your password is a good first start.  Please (quickly) contact Yahoo! customer care for additional suggestions.  You can reach them at help.yahoo.com (click on Mail).  Thanks.</p>]]></description>
			<dc:creator>duzins</dc:creator>
			<pubDate>Mon, 13 May 2013 07:38:25 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Doubt]]></title>
			<link>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc</link>
			<guid>http://developer.yahoo.com/forum/Updates/Doubt/1368128183401-e3600b49-f087-4f4c-ba18-2e670ded63dc/1368128183401</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=G45X4QADKARU5YRGE4ICR5BDLU">jhcpachá</a> in <a href="http://developer.yahoo.com/forum/Updates">Updates</a>

<p>Somebody is using my e-mail account to send virus to others.I already changed my password 4 or 5 times and after 3 or 4 days I get an e-mail from my self with virus.What can I d to avoid and sold this kind of problem?Thanks in advance,Helio Pacha</p>]]></description>
			<dc:creator>jhcpachá</dc:creator>
			<pubDate>Thu, 09 May 2013 12:36:23 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Actually getting Contacts after jumping through all the OAuth loops]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Actually-getting-Contacts-after-jumping-through/1254438660000-91dbd95f-e129-3a22-8d24-58eb1d1082bc</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Actually-getting-Contacts-after-jumping-through/1254438660000-91dbd95f-e129-3a22-8d24-58eb1d1082bc/1367838489087</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=CKMTWDMNQEEVPYPO5H5SJVOPWE">shyam</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>can any give the working example to fetch the contacts in JAVA , basically i need name and email addresses if i provide  email address  and password of any user Email :"<a rel="nofollow">test@test.com</a>"  password :"********" could fetch me the details.</p>]]></description>
			<dc:creator>shyam</dc:creator>
			<pubDate>Mon, 06 May 2013 04:08:09 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Get Yahoo Contacts without Oauth in Java]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Get-Yahoo-Contacts-without-Oauth-in/1367570546625-d4d9d21d-730a-4010-8a05-fdac15ea180e</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Get-Yahoo-Contacts-without-Oauth-in/1367570546625-d4d9d21d-730a-4010-8a05-fdac15ea180e/1367570546625</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=6VMNCWFDYU36Q4TUFCTSI3I6SM">Malar</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>How to get yahoo contacts without Oauth in java. That is i want a way to get yahoo contacts of user without using browser by simply providing user name and password of the user.</p>]]></description>
			<dc:creator>Malar</dc:creator>
			<pubDate>Fri, 03 May 2013 01:42:26 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[How to integrate the  Yahoo mail in android]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/How-to-integrate-the-Yahoo/1367503270496-83ba09ef-4d9c-4113-80a8-8bbb211d59b0</link>
			<guid>http://developer.yahoo.com/forum/Contacts/How-to-integrate-the-Yahoo/1367503270496-83ba09ef-4d9c-4113-80a8-8bbb211d59b0/1367503270496</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=7UQSV4HM47G3EBYYNPGNGEPVNM">Vishwakarma  Vinod</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<pre><code>I have created a project  to get all the yahoo contact in json but the  problem is that ,              i have imple the      code below , using the yahoo account to login successfully              but the problem is that , last step  asking to enter the  code ,              i am confuse , where should i enter the code . Please anyone help me.</code></pre>]]></description>
			<dc:creator>Vishwakarma  Vinod</dc:creator>
			<pubDate>Thu, 02 May 2013 07:01:10 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[How to get yahoo contacts from java webservice]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/How-to-get-yahoo-contacts-from/1367500318582-54b0e41a-4049-43d1-9190-888a97ffb575</link>
			<guid>http://developer.yahoo.com/forum/Contacts/How-to-get-yahoo-contacts-from/1367500318582-54b0e41a-4049-43d1-9190-888a97ffb575/1367500318582</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=XCTKRG6ZUV6LGX3P75CEOL2GNI">priya</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>How to get yahoo contacts from java webservice</p>]]></description>
			<dc:creator>priya</dc:creator>
			<pubDate>Thu, 02 May 2013 06:11:58 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[CardDAV documentation]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/CardDAV-documentation/1367253313551-e816743a-6499-4564-b05d-87dfa879c434</link>
			<guid>http://developer.yahoo.com/forum/Contacts/CardDAV-documentation/1367253313551-e816743a-6499-4564-b05d-87dfa879c434/1367253313551</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=UB4FY6BXSZ4UKQLQ622OZUW6ZI">Rob</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>Is there a place in the Yahoo! Developer guides that has information regarding third-party syncing with CardDAV? Specifically the URI endpoints needed to REPORT, GET, PUT, POST, and DELETE requests.</p><p>Any information is useful.</p><p>Thanks,Rob</p>]]></description>
			<dc:creator>Rob</dc:creator>
			<pubDate>Mon, 29 Apr 2013 09:35:13 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Domain verification failed]]></title>
			<link>http://developer.yahoo.com/forum/YAP/Domain-verification-failed/1334886567351-25f7f3ae-8ca1-4be7-b116-6e3d3773adf4</link>
			<guid>http://developer.yahoo.com/forum/YAP/Domain-verification-failed/1334886567351-25f7f3ae-8ca1-4be7-b116-6e3d3773adf4/1366378273808</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=2NGHAYRGFGHRKTUEHCI6T7LBYU">Antonio</a> in <a href="http://developer.yahoo.com/forum/YAP">YAP</a>

<p>I can not even to validate the domain.here is my file:mZAhMLo8WQpCO8rbHKGtrFzps9CfcjJTk5WfS6CQWg - .htmlUploaded on hosting.greetings</p>]]></description>
			<dc:creator>Antonio</dc:creator>
			<pubDate>Fri, 19 Apr 2013 06:31:13 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Updates]]></title>
			<link>http://developer.yahoo.com/forum/Updates/Updates/1280729263000-36388f51-6a60-3dcc-bed1-13bc2416f74e</link>
			<guid>http://developer.yahoo.com/forum/Updates/Updates/1280729263000-36388f51-6a60-3dcc-bed1-13bc2416f74e/1365855291787</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=A6ALM4O3KJXKT7TNS4ERMWP6QU">mehdi</a> in <a href="http://developer.yahoo.com/forum/Updates">Updates</a>

<p>Hi,im trying to use the updates and wondering where can I derived the value of SUID?please help me.</p>]]></description>
			<dc:creator>mehdi</dc:creator>
			<pubDate>Sat, 13 Apr 2013 05:14:51 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Change my birth date I can not install Yahoo on my cel because it is wrong]]></title>
			<link>http://developer.yahoo.com/forum/YAP/Change-my-birth-date-I-can/1364847546615-944677f1-e33d-4f5a-8998-cacde7756f0c</link>
			<guid>http://developer.yahoo.com/forum/YAP/Change-my-birth-date-I-can/1364847546615-944677f1-e33d-4f5a-8998-cacde7756f0c/1365747157412</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=4VZSO54ZSVRHXU2GBVQCHXVUXU">Alex</a> in <a href="http://developer.yahoo.com/forum/YAP">YAP</a>

<p>Ok</p>]]></description>
			<dc:creator>Alex</dc:creator>
			<pubDate>Thu, 11 Apr 2013 23:12:37 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Get Contacts]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Get-Contacts/1277751419000-04af662f-f86a-3fba-8e07-171119ad4d9c</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Get-Contacts/1277751419000-04af662f-f86a-3fba-8e07-171119ad4d9c/1365600389753</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=SJOP3FCLT5P44BJMJW2S4C4CRU">Raja</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>it should be something like this. just copy it. but there is something wrong with it. let me know if you figure it out.</p><pre><code>private void getAllContacts() {    HttpClient httpclient = new DefaultHttpClient();    String host_url = "http://social.yahooapis.com/v1/user/" + mUSER_GUID+ "/contacts";    String nonce = ""+System.currentTimeMillis();    String timeStamp = ""+(System.currentTimeMillis()/1000L);    try{        String params = "?realm=yahooapis.com"                 + "&amp;oauth_consumer_key=" + CONSUMER_KEY                + "&amp;oauth_nonce="+nonce                + "&amp;oauth_signature_method="+"HMAC-SHA1"                + "&amp;oauth_timestamp="+timeStamp                + "&amp;oauth_token="+ACCESS_TOKEN                + "&amp;oauth_version=1.0"                ;        String baseString = host_url+params;        String signingKey = CONSUMER_SECRET+"&amp;"+AUTH_TOKEN_SECRET;        VIPLogger.info(TAG, "base string: " + baseString);        String lSignature = computeHmac(baseString, signingKey);        VIPLogger.info(TAG, "signature: " + lSignature);        //lSignature = encode(lSignature);        VIPLogger.info(TAG, "signature enacoded: " + lSignature);        String lRequestUrl = host_url                            + "?realm=yahooapis.com"                            + "&amp;oauth_consumer_key="+CONSUMER_KEY                            + "&amp;oauth_nonce="+nonce                            + "&amp;oauth_signature_method=HMAC-SHA1"                            + "&amp;oauth_timestamp="+timeStamp                            + "&amp;oauth_token="+ACCESS_TOKEN                            + "&amp;oauth_version=1.0"                            + "&amp;oauth_signature="+lSignature                            ;        VIPLogger.info(TAG, lRequestUrl.substring(1202));        HttpGet httpget = new HttpGet(lRequestUrl);        ResponseHandler<string> responseHandler = new BasicResponseHandler();        String responseBody = httpclient.execute(httpget, responseHandler);        VIPLogger.info(TAG, "contacts response: " + responseBody);    }catch(Exception e){        e.printStackTrace();        VIPLogger.error(TAG, "error while fetching user contacts");    }}public String computeHmac(String baseString, String key) {    try {        Mac mac = Mac.getInstance("HmacSHA1");        SecretKeySpec signingKey = new SecretKeySpec(key.getBytes("UTF-8"),                "HMAC-SHA1");        mac.init(signingKey);        byte[] digest = mac.doFinal(baseString.getBytes());        String result = Base64.encodeToString(digest, Base64.URL_SAFE);        return result;    } catch (Exception e) {        e.printStackTrace();        VIPLogger.error(TAG, "error while generating sha");    }    return null;}public String encodeURIComponent(final String value) {    if (value == null) {        return "";    }    try {        return URLEncoder.encode(value, "utf-8")                // OAuth encodes some characters differently:                .replace("+", "%20").replace("*", "%2A")                .replace("%7E", "~");        // This could be done faster with more hand-crafted code.    } catch (Exception e) {        e.printStackTrace();    }    return "";}    public  String encode(String input) {        StringBuilder resultStr = new StringBuilder();        for (char ch : input.toCharArray()) {            if (isUnsafe(ch)) {                resultStr.append('%');                resultStr.append(toHex(ch / 16));                resultStr.append(toHex(ch % 16));            } else {                resultStr.append(ch);            }        }        return resultStr.toString().trim();    }    private  char toHex(int ch) {        return (char) (ch  128 || ch #%".indexOf(ch) &gt;= 0;    }</string></code></pre>]]></description>
			<dc:creator>Raja</dc:creator>
			<pubDate>Wed, 10 Apr 2013 06:26:29 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Getting Yahoo Addressbook Contacts for Mobile Client]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Getting-Yahoo-Addressbook-Contacts-for-Mobile/1303106631000-1a8727cb-f90e-3905-a8c0-ae9fdf074656</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Getting-Yahoo-Addressbook-Contacts-for-Mobile/1303106631000-1a8727cb-f90e-3905-a8c0-ae9fdf074656/1365599325179</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=SJOP3FCLT5P44BJMJW2S4C4CRU">Raja</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>yes it is possible</p>]]></description>
			<dc:creator>Raja</dc:creator>
			<pubDate>Wed, 10 Apr 2013 06:08:45 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Error while making OAuth Yahoo! API Requests.]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Error-while-making-OAuth-Yahoo-API/1355397085422-89a8008a-2365-4684-9237-4235129ecbdd</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Error-while-making-OAuth-Yahoo-API/1355397085422-89a8008a-2365-4684-9237-4235129ecbdd/1365577272028</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=SJOP3FCLT5P44BJMJW2S4C4CRU">Raja</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>time stamp should be unix epoch timestamp in seconds</p><p>if you are trying it in android timestamp  = system.currenttimeinmillies()/1000L;</p><p>but i recomend u to use this api</p><p>https://github.com/fernandezpablo85/scribe-java</p><p>its very easy to use.</p>]]></description>
			<dc:creator>Raja</dc:creator>
			<pubDate>Wed, 10 Apr 2013 00:01:12 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Get primary login id without getting logged in]]></title>
			<link>http://developer.yahoo.com/forum/Social-Directory-API/Get-primary-login-id-without-getting/1365154925159-95de8bc9-68a5-4347-a954-0b760e5c262a</link>
			<guid>http://developer.yahoo.com/forum/Social-Directory-API/Get-primary-login-id-without-getting/1365154925159-95de8bc9-68a5-4347-a954-0b760e5c262a/1365154925159</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=7ONMP4UNEE3EIV5ME2H4KEQFRE">Sbsn</a> in <a href="http://developer.yahoo.com/forum/Social-Directory-API">Social Directory API</a>

<p>Hello,</p><p>is there any way to get primary login id without creating a session and getting user logged in?</p>]]></description>
			<dc:creator>Sbsn</dc:creator>
			<pubDate>Fri, 05 Apr 2013 02:42:05 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Continue getting 401 error while trying to get_request_token]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Continue-getting-401-error-while-trying/1257491181000-c5ad4989-0ee3-3c70-b9c8-09d54e082e6a</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Continue-getting-401-error-while-trying/1257491181000-c5ad4989-0ee3-3c70-b9c8-09d54e082e6a/1365032746633</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=LJC2K54Q2LJC56JPKH47IFKW7M">Talus</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>I found a much simpler solution.  :)See it posted at: http://developer.yahoo.com/forum/OAuth-General-Discussion-YDN-SDKs/401-Unauthorized-access-with-get-request-token/1365023216190-47426b75-954d-43da-9213-a5a10d31b1f3</p>]]></description>
			<dc:creator>Talus</dc:creator>
			<pubDate>Wed, 03 Apr 2013 16:45:46 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Continue getting 401 error while trying to get_request_token]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Continue-getting-401-error-while-trying/1257491181000-c5ad4989-0ee3-3c70-b9c8-09d54e082e6a</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Continue-getting-401-error-while-trying/1257491181000-c5ad4989-0ee3-3c70-b9c8-09d54e082e6a/1365015636942</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=LJC2K54Q2LJC56JPKH47IFKW7M">Talus</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>Same problem for me. :(</p>]]></description>
			<dc:creator>Talus</dc:creator>
			<pubDate>Wed, 03 Apr 2013 12:00:36 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: External JavaScript without Caja]]></title>
			<link>http://developer.yahoo.com/forum/YAP/External-JavaScript-without-Caja/1322604418281-25dfa4e4-e141-40c4-ac98-6a195c8e1627</link>
			<guid>http://developer.yahoo.com/forum/YAP/External-JavaScript-without-Caja/1322604418281-25dfa4e4-e141-40c4-ac98-6a195c8e1627/1364985700987</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=7IO6C754W6EHUCJMAW3BIPS2YU">Canche</a> in <a href="http://developer.yahoo.com/forum/YAP">YAP</a>

<p>I just want yo let everyone when are going to look for internet service to not order clear,the service is really bad,you just going to waste your money.</p>]]></description>
			<dc:creator>Canche</dc:creator>
			<pubDate>Wed, 03 Apr 2013 03:41:40 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: YahooSession return null]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/YahooSession-return-null/1348913056841-f4645848-e256-4e19-b4e3-7114eaaa48cb</link>
			<guid>http://developer.yahoo.com/forum/Contacts/YahooSession-return-null/1348913056841-f4645848-e256-4e19-b4e3-7114eaaa48cb/1364921702791</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=KTLH6FMVFZKU353OMCQIC2RRAY">Hbliss</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>Hi,</p><p>I am facing the same problem, can you please tell me the solution if you resolved then.</p><p>Please reply me.</p><p>Thanks.</p>]]></description>
			<dc:creator>Hbliss</dc:creator>
			<pubDate>Tue, 02 Apr 2013 09:55:02 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Contacts API oauth url returns NULL value]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/Contacts-API-oauth-url-returns-NULL/1364918519032-1765f5e8-dde2-4943-95e0-7df40d8c0708</link>
			<guid>http://developer.yahoo.com/forum/Contacts/Contacts-API-oauth-url-returns-NULL/1364918519032-1765f5e8-dde2-4943-95e0-7df40d8c0708/1364918519032</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=KTLH6FMVFZKU353OMCQIC2RRAY">Hbliss</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>Hi All,</p><p>I want use the contact API in php codeigniter. I just created a project and get the consumer and secret keys BUT auth_url returns null value. I need to get the token value in the following line of code,</p><p>$auth_url = YahooSession::createAuthorizationUrl(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET, $callback, $sessionStore);</p><p>Please let me know.</p><p>Thanks in advance.</p>]]></description>
			<dc:creator>Hbliss</dc:creator>
			<pubDate>Tue, 02 Apr 2013 09:01:59 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: iframes and Yap]]></title>
			<link>http://developer.yahoo.com/forum/YAP/iframes-and-Yap/1274932252000-79fff7ea-1ad6-3677-bb11-29af2b3b96d4</link>
			<guid>http://developer.yahoo.com/forum/YAP/iframes-and-Yap/1274932252000-79fff7ea-1ad6-3677-bb11-29af2b3b96d4/1364914508669</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=SOSEGFP34WO4DXJI6XXLYBLBGA">Jordi</a> in <a href="http://developer.yahoo.com/forum/YAP">YAP</a>

<p>Hey,we're having a similar issue while trying to adapt some of our games into yahoo! Is there any workaround in order to have this? (external js/css/flash ?). Any help is appreciatedThanks.</p>]]></description>
			<dc:creator>Jordi</dc:creator>
			<pubDate>Tue, 02 Apr 2013 07:55:08 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: External JavaScript without Caja]]></title>
			<link>http://developer.yahoo.com/forum/YAP/External-JavaScript-without-Caja/1322604418281-25dfa4e4-e141-40c4-ac98-6a195c8e1627</link>
			<guid>http://developer.yahoo.com/forum/YAP/External-JavaScript-without-Caja/1322604418281-25dfa4e4-e141-40c4-ac98-6a195c8e1627/1364914234032</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=SOSEGFP34WO4DXJI6XXLYBLBGA">Jordi</a> in <a href="http://developer.yahoo.com/forum/YAP">YAP</a>

<p>@shoomly @miki is there a way to do this? I'm having the same issues and can't find any workaround.. so any help is appreciated.</p>]]></description>
			<dc:creator>Jordi</dc:creator>
			<pubDate>Tue, 02 Apr 2013 07:50:34 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[Re: Change my birth date I can not install Yahoo on my cel because it is wrong]]></title>
			<link>http://developer.yahoo.com/forum/YAP/Change-my-birth-date-I-can/1364847546615-944677f1-e33d-4f5a-8998-cacde7756f0c</link>
			<guid>http://developer.yahoo.com/forum/YAP/Change-my-birth-date-I-can/1364847546615-944677f1-e33d-4f5a-8998-cacde7756f0c/1364914091462</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=PQIZSB5OBQHUO7DUBOYD3U5ACQ">duzins</a> in <a href="http://developer.yahoo.com/forum/YAP">YAP</a>

<p>Please visit help.yahoo.com for help with Yahoo products.</p>]]></description>
			<dc:creator>duzins</dc:creator>
			<pubDate>Tue, 02 Apr 2013 07:48:11 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[YAP - workaround to load external js/css/flash]]></title>
			<link>http://developer.yahoo.com/forum/YAP/YAP-workaround-to-load-external/1364913390986-4cb853c7-c154-4b78-8d9a-b94340360ebd</link>
			<guid>http://developer.yahoo.com/forum/YAP/YAP-workaround-to-load-external/1364913390986-4cb853c7-c154-4b78-8d9a-b94340360ebd/1364913390986</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=SOSEGFP34WO4DXJI6XXLYBLBGA">Jordi</a> in <a href="http://developer.yahoo.com/forum/YAP">YAP</a>

<p>Hey,is there a workaround to load external js/css/flash. There seems to be as there a lot of yahoo games that does this (eg. kabam games like wartune http://games.yahoo.com/game/wartune-yap.html, the hobbit: http://games.yahoo.com/game/the-hobbit-armies-of-the-third-age-yap.html# , etc). Actually documentation is not clear about this.. (eg caja requirements/restrictions link now is 404) and can't find any gadget xml reference so can't check if there is some tweaking that can be done at this level in order to have this working... (eg, removing the default yap.feature.classic ?).So a bit clueless atm :( .. any help is appreciatedThanks!</p>]]></description>
			<dc:creator>Jordi</dc:creator>
			<pubDate>Tue, 02 Apr 2013 07:36:30 -0700</pubDate>
		</item>
		<item>
			<title><![CDATA[How to retrive all yahoomail contacts using java code ?]]></title>
			<link>http://developer.yahoo.com/forum/Contacts/How-to-retrive-all-yahoomail-contacts/1364909138860-3c7f6234-364f-4610-a63c-d45c65b010f5</link>
			<guid>http://developer.yahoo.com/forum/Contacts/How-to-retrive-all-yahoomail-contacts/1364909138860-3c7f6234-364f-4610-a63c-d45c65b010f5/1364909138860</guid>
			<description><![CDATA[Posted by <a href="http://developer.yahoo.com/forum/user?id=R5JKEPIEJBFNWSN46RPSO24WRA">George</a> in <a href="http://developer.yahoo.com/forum/Contacts">Contacts</a>

<p>hello ,  i am developing such an app in which i want to retrive all yahoomail contacts , i tried a lot for this but didnot get any satisfied solution. is that any yahoo service that can be usefull to solve this problem ? or any other way that can lead app towards completion.</p>]]></description>
			<dc:creator>George</dc:creator>
			<pubDate>Tue, 02 Apr 2013 06:25:38 -0700</pubDate>
		</item>
	</channel>
</rss><!-- p2.ydn.bf1.yahoo.com uncompressed/chunked Tue May 21 18:51:16 PDT 2013 -->
