No able to open MIS Fit developer registration sign up page - rest

I am trying to integrate misfit data with one of our Web App. I could see 404 error when tried to open signup page of MISFit .
Details:
https://build.misfit.com/docs/cloudapi/get_started#preparation
Under quick start section there was link to signup page that was not working.
Sign up Page link.
https://build.misfit.com/signup
Could any body please help me with correct link to the signup process?

Related

Add Text to PayPal Redirect Page

I am looking to add some text to the standard PayPal re-direct page after a successful payment has been made....see the attached screenshot of the page I am trying to include text to....
Is this possible ?
Please advise where to configure
I have looked through all available settings in my PayPal account and cannot see it anywhere...
OK...I don't have enough points to post an image..
Here is a URL to the image
http://www.xlautomation.com.au/images/screen-capture-4.JPG
The web page you are referring to is the "PayPal Thank You" Page and no customization is possible on that page. The best way is to have your own return url specified and let the buyers redirected to your own thank you page after they redirected from PayPal thank you page .

wrong site description when post new status on LinkedIn

I have a strange problem, in my website I use HibrydAuth to share status with Facebook, Twitter and LinkedIn.
All runs fine but I have a wrong description for the site in the LinkedIn page. An image could explain better than a lot of words, but I can't post images so, please, try to use a bit of imagination: this is a shared post from my web site
link to the website page
text shared from the website page
Here I have the link to my web site
here I would have the description of the web site
but I have the footer line of the web site
So my question is: how or where I can set the right description?
I checked in the LinkedIn account without result and the HibrydAuth library don't gives me options to set it.
Thank you for your help
Paolo

Can't find the create new application button or link

I am having problems trying to create a new facebook canvas page. I have been following the tutorial: http://developers.facebook.com/docs/appsonfacebook/tutorial/
It first says to "Start by visit the developer app." which points to: http://developers.facebook.com/apps. However when I click on this link, it redirects me to to the admin panel of my actual Facebook Page.
I don't understand why this is happening and I don't know of any other means of navigating to where I can create new app?
Here's how I got there:
Clicked on your link.
Logged into facebook.
It brought up the screen below.
I do want to note that it changed the link to a secure link https://developers.facebook.com/apps

FB Wall Posting with Link from FB IFrame App

I am doing the FB Wall post with a link say http://www.rewardtv.com. When i post it from my standalone website (using spring social) the link on the wall is working fine. It goes to the rewardtv.com
But when i use the same code from FB app and post it to the wall, even though the wall post looks correct, but when i click on the link it is getting redirected to
http://www.facebook.com/connect/uiserver.php?app_id=172622806174327&method=permissions.request&redirect_uri=http%3A%2F%2Fwww.rewardtv.com%2F&response_type=code&display=page&auth_referral=1
instead of rewardtv.com
and then getting a error page that my "An error occured with app name. Please try again.
Any help please... My intention is even if the wall posting is done from FB app (iframe), it should be directed to www.rewardtv.com instead of going to my app connect and permission
is there any extra permission need to granted in the app?
Constructing link like below
FacebookLink link = new FacebookLink("http://www.rewardtv.com",
rtvLinkTitle, rtvLinkHeading,
rtvLinkMessage);
and doing the post like
facebook.feedOperations().postLink(message, facebookLink);
To rectify the problem follow the below steps,
To Post the Cross domain URL (http://www.rewardtv.com) as link do the following,
Go to developer app setting (https://developers.facebook.com/apps) for the corresponding App.
Click the Edit App tab.
Click the Advanced tab on left side.
In the settings of Migrations Menu, check the radio button to Disabled for Stream post URL security

Adding Facebook Apps to Page Tabs

I have googled and googled around for this and found the blog post from Facebook about remove app profile pages etc. I also found that you can go to this link:
https://www.facebook.com/dialog/pagetab?app_id=[ID NUMBER HERE]&display=popup&next=[URL OF YOUR DOMAIN]
The problem is what do i put in URL OF YOUR DOMAIN. I cant put a site url in the app settings because its not a web site application, its a page tab application. Any combo of URL's i try, it just errors with "URL not owned by application"
Any ideas or experiences with this?
Use FB.ui method of JS-SDK with method pagetab as shown in example of Add Page Tab Dialog documentation this will automatically provide needed info to dialog.
FB.ui({method: 'pagetab'}, function(){
// User either closed dialog or added tab, you can call Graph API to check...
});
You have to register the URL first with Facebook and then use it. First go to http://developers.facebook.com. Then go to your app and hit [Edit App]. At the Basic Info section, you'll find a textbox requesting you to enter the APP Domain. Once you save it will work fine.
I simply entered www.my-domain.com, no http, no slashes.