Facebook Ar Studio - adding hyperlink to website - facebook

I am using Facebook Ar Studio and would like to create a link in the scene to an outside website when an object is tapped on. Is this possible?

Not possible - currently Facebook restricts this sort of behavior.

Related

Custom multi friend selector Facebook Unity3d

I want to make sure about can we make custom multi friend selector of facebook in unity ?
I got the multi friend selector link . but there is no reference code regarding unity.
So if anyone has tried that feature then help me and share here.
Thanks..
Will you can get friends list using one of my plugins (Android Native or Mobile Social), you will also find friend list implementation example inside, here is example scene screenshot:
http:// i.stack.imgur.com/68y5R.jpg
And in case you do not want to use paid solutions you can get free Unity FB SDK for here.
https:// developers.facebook.com/docs/unity/downloads?locale=en_GB
And use
FB.API("/me?fields=friends.limit(10).fields(first_name,id,last_name,name,link,locale,location)", Facebook.HttpMethod.GET, FriendsDataCallBack);
To get your friends data. More info:
https:// developers.facebook.com/docs/graph-api/reference/v2.2/user/friends?locale=en_GB
P.S. Sorry for url formats. I ma new here, and can not add more than 2 links to my replay

How to embed facebook (like button and like box) in an esternal flash page

I am creating my new website, I have a Facebook page and I would like to embed the facebook's like button and the facebook's like box directly in my actionscript... Is it possible?
In the case it is not possible, could I embed them in the html in a way I can see them over the swf?
Thank You Very Much,
Alessandro
I think you can't.
Alessandro,.. why are you making a website in flash?
ipads can't see it, iphone can't see it, and Android can't see it (unles you have firefox with custom installed flash player)
why don't you do it in html,css,jquery ??

Changes done is unity web player html not reflected in Facebook canvas app URL

I developed a small game using unity3d and Facebook unity3d SDK . I am able to do everything from login to post feed or app requests or score.
My only problem is addition of extra html or JQuery scripts done in the Webbuild.html file do not get reflected in Facebook canvas app page.
Facebook only displays my game and all the html or Javascript is simply trimmed off.
I need to fill the blank white space around my Facebook canvas game with my self designed HTML code snippets.
Any suggestions or help is most welcome.
We will be introducing convenient methods to add padding and centering for the unity web player from within Unity (as well as customizable splash screen when loading through the Facebook Settings).
Further customizations can be done through Unity's ExternalEval call.

Built-in Like Button - Facebook SDK 3.0

Does anybody happen to know a good tutorial on placing the ‘I like it’ button into the application?
I’m especially interested in Facebook SDK 3.0 and the so-called Built-in Like button.
So far, I’ve been searching through google and stackoverflow but I haven't found anything about SDK 3.0.
Publishing a built-in like is very similar to publishing a custom Open Graph action. The best resource for learning about publishing built-in likes is Facebook's reference page:
https://developers.facebook.com/docs/opengraph/actions/builtin/likes/
Please see this post regarding likes and this post to see an alternative of adding a like button.
Ideally you could create a html iframe that links to the page. obviously this would open up the webpage to the link of the facebook like button. atm i believe that's how temple run achieve this. does the trick. They're getting many likes from users directed from the ios app temple run itself.

Facebook Video Like using custom like button

I am developing an iPhone application that lists videos posted on logged-in user's wall. I would like to provide an Like button below each video listed. When the user clicks on this Like button, the corresponding video should be liked in Facebook.
The Like button shown in the UI should match the UI theme of my app. I have gone through Facebook plug-in documentation related to Like button. Following is the link with the documentation:
http://developers.facebook.com/docs/reference/plugins/like/
But, I cannot use this Like button generated using iFrame since I will not be able to customize the look of Like button.
How can I customize my Like button? Or how can I programmatically like a Video URL? I am trying to this since long time. I have seen some iPhone apps already having custom Like button.
Take a look here for a nice how-to on styling:
http://www.esrun.co.uk/blog/disguising-a-facebook-like-link/
And the specific policy from Facebook is that as long as you are not deceiving the user, the policy team would consider this practice acceptable.
I could do it using Graph API. New SDK provides support for Graph API.