How to share our post in linkedin from our site using shareArticle - html

I have to share the profile to linked in from my website.I tried shareArticle in linkedin url.It is not working for localhost.What i have to do?. Here sharelink is the link that will hold the candidate profile
it is not working for localhost . how to configure for localhost.I alse tried with Ip
It should go to the linked in page and post but it showing oops not found

Since localhost is not available on the Internet, it isn't possible to LinkedIn to access it (which it needs to in order to fetch the preview data).
So you can't.
Publish your site on the Internet instead.

Related

How to fix localhost Facebook apps “Error: Can’t Load URL: The domain of this URL isn’t included in the app’s domains”

I know that this question has been asked previously in this link Facebook OAuth "The domain of this URL isn't included in the app's domain" , but the solution is not working for me and it doesn't strictly similar to my issue.
I'm trying to setup Facebook OAuth to work with my application that is being developed locally on my machine.
I followed every steps from facebook guide:
I created my application
I added a web platform with the url http://localhost/
I added Product Facebook Login
I added code for Continue with Facebook button described here in my html page
Facebook button is on my page but it doesn't work when I click on it (Error: Can't Load URL: The domain of this URL isn't included in the app’s domains).
I tried to add a domain (localhost, http://localhost, http://localhost:5000) but it didn't work.
I then added http://localhost:5000/ to the field 'Valid OAuth redirect URIs', but no improvement.
Here my Facebook login settings :
login setting
Thanks for your answers !

Chrome extension inline install not working in verified IP site

I have verified my IP (not the domain) using webmasters tool and it successfully verified.
I have added <link> and called chrome.webstore.install() and getting this error:
Inline installs can only be initiated for Chrome Web Store items that have one or more verified sites.
I think I should call chrome.webstore.install() from subdomain or a page. So I am calling from a page (index.html) but url is just the IP.(like http://52.1.165.721/#/home) (Angular UI routing and index is default page.)
My questions are:
1.I didn't have a domain yet. Is that a problem?
2.I have to install extension from home page itself. I got some websites (eg: https://adblockplus.org/) as examples. But don't know how to do that. Please help.
I went through
How to test inline installation of Chromium/Chrome extensions locally? ,
Chrome Inline Install for extension not working and
chrome.webstore.install(); Not working on verified site
So as Xan said I added Website link and didn't fill Verify that this is an official item for a website you own: because my domain was not listing there.
The problem was I uploaded extension using my work account and verified site using my personal account. So I added my other account as an owner with help of https://support.google.com/webmasters/answer/2454036?vid=1-635766230904751668-2044003462 and refresh list does the trick.
So I selected the verified site from drodown and after a two minutes inline install worked.
Turns out:
1.We don't need to buy the domain. IP will work.
2.Calling chrome.webstore.install() from home page itself will work too. (Url doesn't matter I think)

Blogger - Unable to set custom domain name - getting Error 12 and 404 page

I am unable to setup a custom domain name for my blogger site, I followed all the instructions mentioned on the below link but nothing has helped me so far (Note: Its been 3 days now).
Referred Link:
https://support.google.com/blogger/troubleshooter/1233381?rd=1#ts=1734115
Other details:
My blogger site: http://sandbox-addedbits.blogspot.in/
My Domain with www: http://www.addedbits.com/ [Note: Currently showing 404 - page not found]
Domain without www: http://addedbits.com/ [Note: Currently showing welcome page]
Also, find the screenshot of
Blogger's Third-party domain settings:
Godaddy A(Host) Records:
Godaddy CNAME Records:
My Domain name verification has also failed using all the methods mentioned by Blogger.
Let me know if anyone can help me to setup custom domain name for blogger site.
Thank you in advance.
I managed to fix the Issue yesterday. While investigating I noticed the my domain name was assigned 4 name servers. The two nameservers shown on settings tab were different from the two nameservers shown on DNS Zone file tab due to which Google blogger was unable to verify domain ownership [Note: I have attached the screenshot of the issue for users reference]. After replacing the two nameservers on "settings" tab with the two nameservers on "DNS Zone File" tab the issue got fixed.
Godaddy Setting Tab Section:
Godaddy DNS Zone File Section:
Hope this information might help others!
The same problem I was facing but it was four years back and in that time i did not have any solution for the problem, so I got help from forums as well as support team of the domain registrar, even I got help from the article.
Which is having all step by step guide for setting up domain name for blog-
http://www.bloggerhowtoseotips.com/2013/07/How-to-Setting-Up-a-Custom-Domain-on-Blogger.html

creating and uploading an application into facebook apps

I recently created a HTML5 game locally on my PC. Then, I went to the Facebook developer website and created a new application but it asks you about the link to the application.
My application is local and I don't have any hosting website. I tried to upload it via jsfiddle, but they didn't accept it as a valid link. What should I do?
I suggest reading the Getting Started manual on Facebook Help Center, that will get you started very well. Make sure you follow the steps and search for more information there.
You are not able to use JS Fiddle for your Facebook application, you need to have some website to host the application in. There are several cheap (some free) web hosts, which you can use for hosting. It is always better if you can buy your own web domain and host, this way it's guaranteed that it will work.
When you have your domain set up, you create a folder for your application on the FTP server and use the address (e.g. http://example.com/myapp/, https://example.com/myapp/) and place that address into the Canvas URL field on the configuration panel in Facebook Developers site.
The steps on how to continue from now on can be found from the manual linked above. Hopefully this helped you out!

Given URL is not allowed by the Application configuration. when using the Facebook Javascript SDK

Im currently using the Facebook Javascript SDK and I keep running into the following problem that appears in the console:
Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.
I've read a truck load of related posts but still can't get it to work. I am working locally using the following: http://localhost:8080/bookbayapp/. In my facebook developers app section I have the following:
But once again nothing seems to work. I am currently using Google Chrome for the testing and it is worth to mention that I am using the Facebook Plugin for Phonegap but when testing I comment out the link the to plugin js so I assume in doing this there shouldn't be any problems?
What works for me is using the actual URL of the production server, and then adding a line to the hosts file that redirects all traffic from that URL to localhost.
Let's say your website is called potatoes.com. In "Site URL" write:
http://potatoes.com/bookbayapp
and then open your hosts file (C:\Windows\System32\drivers\etc\hosts) and add the following line:
potatoes.com 127.0.0.1