raki
raki

Reputation: 2293

Google plus share using php

Is it possible to share some user activities (some url) to his google+ account directly with PHP (Not like a share button and having an popups or redirections)?

Please suggest me a best practice for doing the same.

Upvotes: 1

Views: 7333

Answers (2)

BrettJ
BrettJ

Reputation: 6851

Google+ does not allow for direct writing to a user's stream without a user's direct interaction. You can write to a user's Google+ history after they've approved your application to do so and then the user can choose whether or not to share the moments to their circles or publicly.

The Google+ history is still in developer preview.

Upvotes: 0

Joanna
Joanna

Reputation: 2176

Currently, it is only possible with the official Google+ Share Link, but this will render a pop-up.

https://developers.google.com/+/plugins/share/#sharelink

Upvotes: 2

Related Questions