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.
Related
I am searching for a best way to show WeChat profile in app after user click on link on some website.
I found some solution here but it's not working for me.
For example I tried these URIs:
link
Or in href attribute:
weixin://contacts/profile/{wechatId}
It's not working for me. After I click on this, WeChat app is opened and immediately closed. Or it show me not found error on Tips tab..
Is there some way to do it?
I think WeChat has not public profile webpage like facebook for now, you can only access other people's profile in the WeChat app by scanning a QR code or search by WeChat id/phone number. The code snippets that you mentioned above has been discarded by WeChat Official(But you may still can see it in some old official documentations).
If you still want to achieve this function, I recommend you just post your QR code in your webpage.
However, some people using the weixin:// as a bug to link WeChat to others apps. You still can generate a tickets like weixin://dl/business/?ticket=***. The *** contains your wechatid and is encrypted by some specific algorithms, which is not opened by WeChat official. And also, buying some third-part server tickets like this to get the jump link works for now but not stable.
I am trying to create a link from my website to my skype profile. I saw this post by Alex Turpin Create application link to Skype profile. This works fine, When skype link is clicked it goes straight to my skype profile.
However if the skype link(Link to my profile) is clicked while the user is not logged-in skype, this fails(skype client crash).
So I removed 'userinfo' from this link(<a href="skype:profile_name?">) and tried again, Skype did not fail, it asked me to login, but after that it made a skype call instead of viewing the profile.
How can I resolve this? How to view a skype profile succesfully while user is not loggged-in skype.
Thanks.
I am afraid this is Skype's problem, it happens on all Skype versions. I reported this issue to them.
For now we can try a work-around(like Marin suggested in the answer below).
The following actions still works even if a user is not logged-in skype, try using one of them until we get a proper solution for this issue.
Text to call
Text to chat
Text to leave a voice mail
Text to send a file
Text to add to contacts
This question is quite intriguing.
The problem could be in Skype version or in Skype in general (or windows?). I've tested it with my current version which is 7.3.0.101 on Windows 8.1 and it's crashes as you said. You can report this to Skype support, but untill this is fixed (or you find any solution), I suggest you to try some workaround like
Link to my profile
Or you can try whatever action you like, but I think chat for now would be OK.
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/"
I have a chrome app which basically is just a visual bookmark which sends the visitors to my website.
Currently it doesn't show any referer because technically the user came directly to the website.
Is there a way to detect this?
I understand I can append some query parameters in the URL of the chrome app but I am wondering if there's a cleaner solution than this.
The chrome.webRequest property should allow you to set the information you need. I couldn't find exact details that would help but there is an Auth option which you may be able to use as a referrer.
Hope this helps. Sorry I could not help further.
https://developer.chrome.com/extensions/webRequest.html
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.