Closed hallstar05 closed 10 years ago
hi @hallstar05, you can do that almost the same way:
$oAuth = UserOAuth::model()->authenticate( $provider );
$oAuth->adapter->setUserStatus($message);
or when you want, you can do that through db
$oAuth = UserOAuth::model()->findUser(5, "Google");
if($oAuth) { // this user had used HOAuth earlier
$oAuth->adapter->setUserStatus($message);
}
This is brilliant! Thanks for helping.
not at all :)
How do I update a user's status? For example, updating a logged-in (connected) Facebook user's status.
For example, with hybridauth, I do this:
But how can I do that using this library? Thanks.