Method: GET
URL: http://<host>/ccp-webapp/ccp/reply/twitter/friendships/exists?user_a=<usera>&user_b=<userb>&account_user=<account_user>
I tried the new url, but it seems to be working only when user_a is following user_b. In this case it returns the expected response and indicates that user_a is indeed following user_b
<TwitterProgress>
<httpResponseCode>200</httpResponseCode>
<httpResponseMessage>OK</httpResponseMessage>
<progress>SUCCEEDED</progress>
<rateLimited>false</rateLimited>
<twitterStatus>
<friends>true</friends>
</twitterStatus>
</TwitterProgress>
However, if I try the same thing where user_a isn't following user_b I get back a response that indicates an error.
<TwitterProgress>
<httpResponseCode>403</httpResponseCode>
<httpResponseMessage>Forbidden</httpResponseMessage>
<progress>FAILED</progress>
<rateLimited>false</rateLimited>
</TwitterProgress>
I was expecting the request to succeed, but the friends element value to be false. Am I interpreting the API correctly?
thanks,
Brett Bandy