How can I add google profile or facebook profile link into my website..? - facebook-like

How can I add google profile or facebook profile link into my website..?

A simple html link should be fine :
My Google Profile
My Facebook Profile
You can also generate the html code for a Google Profile badge and a Facebook Profile badge if you would like more features.
If you website is managed by a tool like Blogger or WordPress, many plugin exists to easily generate links.

Follow what #poiuytrez said.
Also, While adding your Google Plus profile... You can also use rel="author" tag. And from your G+ profile add your website link the Contributor To section.
My Google Profile
This way your profile might show up in search results as an author. See below.

Related

Extract my timeline posts from Facebook Graph API

I am trying to extract my posts, via Graph API from facebook. I used some basic code snippets but they don't work. I can not get my feed even in the Graph Explorer. It always says that I don;t have the permission and I have to submit my App for review and provide a video tutorial on how I use the extracted posts.
But I want to extract just my posts, I don't care for anybody elses. Do I seriously need FB App review to do that?
This is what I get with my token from my app:
user/posts requires additional contract signing:
Use /me/posts with your own App, with your User Token and authorize with the user_posts permission. This works without any approval from Facebook - for your account and your App only, of course. I just tested if it still works in the Graph API Explorer and it did: https://developers.facebook.com/tools/explorer/108138225915615/?method=GET&path=me%2Fposts&version=v5.0

unable to get page likes although i am admin of both app and page

i am preparing a data analysis tool. i am unable to get the likes and reactions on posts of a page (i get a grayed mark on the filed in the graph API explorer) although i am the admin on the test app, and an admin of the page and the documentation clearly states:
""While you are testing your app and before you submit it for review, your app can only access content on a Page for which the following is true: The person who holds the admin role for the Page also holds an admin, developer, or tester role on the app."
i tried both a user token and page token
/MyPageName?fields=id,name,posts{message,comments,likes}
API V3.3
Getting user data for likes and comments requires your app to live and reviewed.

Djangocms_blog - how to include social media (ie. facebook)

I'm using djangocms_blog. Everything is working good, but I have no idea how to include facebook for articles. Plugin give me possible for that, but I never do that and I don't know where I find relevant information about it.
How it look on my djangocms admin:
I created app on facebook dev:
And I used facebook app ID in my blog input on settings.
Like can you see, there is more information about FB. Where can I find them? And What else I should do?
All the informations are actualy optional, and you can provide any combination of them.
In case you created the application, App id is the right one, probably you will also want Facebook author URL (the user profile) or Facebook page URL to link the post to the facebook profiles.
Don't forget to enable generic django meta support (at least META_USE_OG_PROPERTIES: https://django-meta.readthedocs.io/en/latest/settings.html#meta-use-og-properties)

Linking different user profiles in Google app Engine using python

I am building a social app on Google app engine using python, for which i am using Google+ api for user login and after login user can post and share.I need help in connecting one user profile to another so that user can see others post and follow them and also in displaying one's profile to another user. Like a user can browse public posts of all users, and if he clicks on creator of post, the link should open creator's profile with option of following him.I know to save user data in datastore and retrieve them.
Thanks.
You will probably want to use the Google+ Sign-In, which can get you some information to the social graph and then access to the Google+ API. This information includes the ID of people in the user's circles that they've permitted you to see, so you can use this information to build their social graph.
If you have more specific questions, you should probably update your question (or post a new one) that demonstrates the exact problems you're having with the code.

How can I get 'highlighted post' information from my fb profile page in my ios5 app using facebook api?

I'm developing an app for iPhone(ios5), where I need the information of the posts I made highlighted in my facebook profile. Using facebook-graph api its possible to get all the data of user profile but is there any way I can get highlighted posts data ? For example I want to count and keep track of how many posts I highlighted in fb timeline.
You can use [pageid]?fields=posts.fields(timeline_visibility)
Each highlighted post will have timeline_visibility set to "starred"