app.facebook.com/mygame didn't work - subdomain

I have an app on facebook, I'm hosting this app on a subdomain (mygame.mydomain.com).
When I click game on app center or direct link (www.facebook.com/appcenter/mygame) there is no problem, but if I want to redirect on link "app.facebook.com/mygame" it didn't work.
I couldn't understand what's problem, please help

isn't it "apps.facebook.com"?
And also, I think "apps.facebook.com doesn't work anymore. Because whenever I tried opening an app using that url, it redirected me to "facebook.com/appcenter/"

Related

Vimeo Api can not be created

I m trying to create an app on Vimeo web but it prompts that "verify your email first" I have already verified the email.
Please help me outenter image description here
Go to your https://vimeo.com/settings and verify your email address.
If you're unable to do so, contact Vimeo at https://vimeo.com/help/contact.
The problem is when you try to create your first app on the "My Apps" page. I got the same error OP described.
The solution is to go to any other page where you still see the "Create App" button at the top right. For example: https://developer.vimeo.com/
This worked for me. I doubt Vimeo support even knows about this bug.

Using HTML, how do I link to a website I don't own that doesn't use www?

My problem is that I'm trying to link to a flash game on a version of the site with no www. HTML doesn't recognize it without www. If I use the www version I and everyone else using the app would have their savegames reset. What can I do?!
Edit: I had been testing via TideSDK Developer but decided to try Chrome. Magically it works as it should. Sorry for the trouble everyone I guess it wasn't HTML's fault after all.
You can just use the full link including 'http://'
So for example, if you wanted to add a link to example.com, you would use
Link to Example.com
Also, the website you are trying to link to might automatically add the 'www.example.com' after the user connects to the site via a redirect.

URL in Address Bar not Changing for NodeJS powered website

I'm building a website that's entirely hosted on my own VPS using NodeJS since I don't want to pay for hosting and I already had the VPS so I figured why not use it.
The issue I'm having is whenever I click on a link from the homepage and navigate to that page, the website does exactly what it's supposed to do but the url doesn't update in the address bar.
Say my url is www.examplesite.com and when I click a link, it goes to www.examplesite.com/application. The second url isn't reflected in the address bar so when I refresh www.examplesite.com/application, because it says www.examplesite.com in the address bar of Chrome, it reloads the home page.
Is there a way to fix that via node or will I just have to suck it up and buy web hosting? I'll do it eventually but not for a while.
Perhaps you never call res.end(); in your server function?

Is there anyway to install an extention without visiting to google app store?

Is there anyway to install an extention without visiting to google app store?
For example I want visitors, can install my extention just one clicking a facebook ad or a banner?
Is it possible?
I read some article that mentioning about to verified site ownership to do this. But I want to make advertisement on facebook so I wouldn't be owner of the web page...
Does anyone have information on this subject?
Thanks.
Right click on the Chrome shortcut
In the Target field, add --enable-easy-off-store-extension-install after what's already there, let a space before
Save and start Chrome
You're probably looking for inline installation, performed via chrome.webstore.install.
In your webpage:
include <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/itemID">, where the URL is the address of your extension
then. call chrome.webstore.install().
Unfortunately, you can't do either of those things on a basic Facebook page, but you could do it on a web page you can fully control.

Cannot link to chrome://newtab

I'm trying to provide a link to chrome://newtab (the new tab page) for my distraction-preventing page for when I need to access it, however clicking the link gives the error Failed to load resource.
I've tried:
Linking to it using <a href="chrome://newtab">
Attempting to redirect the user using window.location.
The chrome: prefix aliases to chrome:// but still fails to load.
Does anyone know if this is possible or has any ideas to try?
I am not sure why it doesn't work, but I think it is for security reasons.
Pages on the internet should not have access to local resources and the new tab page is a local resource.
Format your link thusly (also will work with firefox and other tabbed browsers):
Click me
EDIT: of course, that's not actually the new tab page. It's just a blank tab. Going to leave it anyways.
I think you'll have to write a Chrome extension to get access to the chrome://newtab link, it doesn't seem possible for an ordinary webpage to access it.
Edit: This solution no longer works, but I'll leave it for anyone that might try to hunt down why it stopped working.
I finally found that https://www.google.com/_/chrome/newtab will open chrome://newtab, thanks to this post.
Don't ask me why.