I am trying to integrate Google Forms with my site to capture email addresses of interested users; however, I'm presented with a Sorry, the file you have requested does not exist error message.
This is my website.
Any ideas how to fix? Thanks in advance.
If you are just embedding the form is will be as easy as pasting the embed link then updating positioning to show up on your site correctly. Make sure you make the form public so anyone can access it.
Related
I am creating a mobile application using ionic 3. I need to know the logic to implement reset password functionality. till now, i am able to send an email with reset token to the user.
I was thinking that id user clicks on the link in the email, if app is installed then it should open the application page dedicated for reset password.
So i did a little research and found that it can be done using DeepLinking ( custom url to respond) like myApp://resetPassword/{token}
Now the problem is in gmail when you send link with custom url, it removes the href option.
Can some one tell me slight information to implement this functionality and some articles to read.
Thanks,
I found this issue https://github.com/EddyVerbruggen/Custom-URL-scheme/issues/81 concerning this href removal in gmail.
They recommend - just as user1027620 - to create a regular html page and use JavaScript redirection to do the trick.
I guess you will indeed need JavaScript to get the arguments (unique token...) from the url and copy them in the myApp://resetPassword url.
I have searched through many pages on SO and cannot seem to find the answer I am looking for.
I have a website (created via CMS SiteCore) that I want to display via an iFrame on a Facebook page. however, due to some SSL issue (I still do not fully understand the issue, but I know it is related to SSL), Facebook will not display it.
I thought a possible solution would be dwonlaoding all of the content (HTML, CSS, Images, etc) and just recreate it in an HTML editor app for Facebook. Wrongo. The app does not let me upload images, and when I link to the images on my server, it hits this SSL issue again and will not display images.
I just want this page to display when clicking on the app. Here is the page:
http://www.pplweb.com/home/social/facebook/pplcareers/v2/careers_fb_v2_hj.ashx
Any help would be greatly appreciated. Thank you.
Yep you require a SSL Certificate can get them as low as $17 in Geotrust if need be or a dearer one in hostgator or godaddy as well and they will install it for if have them as a host... once attached to domain should show the site or webpage in FB within Iframes... Also as the previous poster need to have domains the same one using the iframes in FB as that is where you want it right displayed...
Hope helps
Rick Ling
I would like to develop a website using the Facebook Registration plugin. However, I would like to see whether it is possible to avoid having to save the registration data also on the website's own database.
The application is very simple, and it seems redundant that we need to save all the user data again just so we can pick up a random registration and notify a winner.
I have no problem implementing the plugin successfully, but I cannot seem to find a way to browse the registration data either at the Facebook Apps or using Open Graph.
Anybody knows whether it is possible to browse the registration data if it hasn't been saved on a custom database?
Thanks in advance,
Jorge
Check out the "Reading the data" section of https://developers.facebook.com/docs/plugins/registration/
It says your information will come to you in the signed_request parameter.
Wondering if anyone has actually managed to get the "share" functionality working in an email newsletter.
Currently being asked by a client to "share" a certain part of a newsletter directly to a persons wall.
However, the HTML will be generated by 1 program, and then a copy and paste into the email blaster to be sent.
Essentially, wondering can it be done? Are there any examples?
The like button plugin will work for a web page, not content in an email.
The share is being deprecated.
The send button plugin is used to share a URL (which is not content of an email).
I would suggest that the html of the email being blasted also be hosted on a web page. Then have that like (https://developers.facebook.com/docs/reference/plugins/like/) button's (that is being send via email) set it's href property to that of the hosted web page. That should work well.
Happy coding!
I'm creating a website in C# ASP.NET and I'm trying to integrate Facebook. I've used a Facebook IFrame as my registration form and the Facebook C# SDK here http://facebooksdk.codeplex.com/ to access Facebook user details. So far I've figured out how to add the fields I require in the Facebook IFrame, and using the SDK I know how to decrypt the data posted back to me from the signed request field server side.
My question is how can I add validation to the fields before they are posted? It seems that the password field I've added to the Facebook IFrame registration form already has some validation since the password must be at least 8 characters, but I'm not sure how this is being done or if/how I can possibly customise it.
Hopefully someone out there can help point me in the right direction. Thanks for reading.
Sigh! To answer my own question I finally found this documentation here...
http://developers.facebook.com/docs/plugins/registration/advanced
I've reviewed that documentation and still can't find a way to add custom validations to fields such as 'email'. It appears to me that only custom fields can have validations. Have you experienced this as well?
Client side validation in registeration plugin is only available in "xfmbl". you cannot perform validation using iframe.. see advance uses of registration plugin..
https://developers.facebook.com/docs/plugins/registration/advanced/
under the heading of Client Side Validation, it clearly states
*
If you want to add validation to any of your fields during
registration, you must use the XFBML version of the plugin, since the
iframe can't do cross domain communication.
*
hope it helps...