Is there any way to read facebook reviews from other user admin? - asp.net

Is there any way to read facebook reviews from other user admin pages to my website? If it is possible please provide solution?

No, that is not possible.
https://developers.facebook.com/docs/graph-api/reference/page/ratings: “A Page Access Token is required for all methods.”
You can only get a page token for pages that you have admin access to.

Related

NopCommerce google bot crawl redirected through login page

I have a nopCommerce website, and bots cannot crawl my website. Google Search Console says that my sitemap is not valid XML but an HTML page - I think google bots are also redirected to the login page.
My ACL Public Store rules are all set to enabled for customers, and as you can see, you can visit all the pages without logging in. Why is Google's bot redirected through the login page? How can I fix this?
Thank you, there was an extra logging for that email, and that extra logging did not have the guest role assigned. I very, very much appreciate your help.

wordpress webstie restriction or blocking, only registred users can view the website

I am creating a website on top wordpress,
The reason to use wordpress is that,
We want to restrict or block the entire site,
Only registered people should be able to access the site that too after verification,
Can anybody help me choosing the right plugins to achieve this.
Note : the site will be similar to a membership website, but the users who are going to use this are not paying, We just want to allow only people whom we approve.
Example: The steps are the one we are looking,
Default page should be Registration page,
Once Registered, Email verification has to be done by clicking the link in the Email ID giving during registration,
Post verification, Email with log-in page link along with username & password goes to the user's registered Email ID,
User logs-in using the username and password,
User is able to view the entire site
I AM A NEWBIE IN WORDPRESS,
Thanks
Ashok
Check this plugin : https://fr.wordpress.org/plugins/wp-user-frontend/
It's the best to make membership / private page / registration page and etc.. and he is the most documented plugin on this.
Have fun and welcome on Wordpress :)

Fetch my own updates from linkedin and display on my website - anonymous users

I have a company profile in linkedin. I have some updates in the profile. Now i need to fetch the records from linked and display on my website. It should be visible to the anonymous user also.
Did anyone implement such kind of code. Using only javascript or REST service. Please suggest some links. I have searched but no use.
Unfortunately, the LinkedIn API terms of service do not allow you to show data to un-authenticated users. Your options are to:
Authenticate the user and pull your profile data using their credentials, or
Use a pre-built plugin like the Member Profile plugin to display data to unauthenticated users.

Facebook auto-login

I have one situation. I create a website. Then I put a tab that will link to Facebook authorization login page. Can I pass login parameter(Email,Password) to the Facebook authorization login page?? So that the user can authorize the application without see the authorization login page.
Thanks.
No. You can't do that. It would require the user to give you their facebook password which obviously would be breaking all kinds of terms and conditions. This is what OAuth is for. Check out the documentation on authentication

Facebook login with ASP.NET

I am implementing Facebook login on my website. I am creating an asp.net user as well with the Facebook users details. This way I can control login in people to my site using .NET membership regardless of whether they are a Facebook user or not.
The problem I am facing now is security. When a user logs in with Facebook I am calling a webservice with their facebook details, if the user exists on the system (by their facebook userid) then I log them in. However as it stands anyone could call the webservice with someone elses facebook id and it would log them in (if that user existed on the system). Is there something that I can use to link the facebook user with my asp.net user that is only accessible to that user, such as an access token. It also needs to be something which does not change? Does facebook send back such a thing in the response object?
Any help or suggestions are much appreciated.
Thanks
Yes, we can get that profile data from Facebook. Using that requestAccessToken Url you can get that access token.
requestAccessTokenurl="https://graph.facebook.com/oauth/access_token?client_id={0} redirect_uri={1};client_secret={2};code={3}"
Also we can get the Profile Data using this access token
requestProfileUrl="https://graph.facebook.com/me"
please see this link- http://easyoauth.codeplex.com/
you can download the source code also :)
We have implemented for Facebook, Twitter, LinkedIn, Google using this framework. It is very straight forward. I can help you how to do this.
Thanks

Resources