I was googling and trying a lot with this issue but could not find a solution.
I have a micro site with Javascript. I want to do a "vote" for an awards, and the proceed is "make a tweet->get the user that tweeteed->thanks for voting username!".
I tried with twitter intent, but when I use the Intent Events for "tweet", the param "data" is empty, so I cannot retrieve the username.
Then, I tried creating a twitter ap, with keys and that. I added PHP for that, using different libraries, but the only thing I can achieve is allow to tweet but with the same account of the App, not with any account, as desired.
What I am doing wrong? I got lost.
Thanks a lot!
Related
I want to implement "punch out" integration in my website. I am working on a e commerce website and it required to implement "punch out" with help of punchout2go.com .
I searched over web, but can't get any proper solution. Any help or tutorial link will be highly appreciated.
Thanks in advance.
Documentation was sufficient to implement punchout2go integration. just simple XML was sent as data to API and in response an URL with token was retrieved. Then i need to access that URL and boom my punchout client page was opened , i can add items to cart and after clicking on proceed, i will come back with response which will have cart items and then i need to render that cart items on my website page, and it was done.
I apologies in advance that this is not a technical response.
If you are working with punchout2go, you should reach out to them and they will help get you sorted out. They have materials available and can get on collaborative working sessions to make sure you are getting what you need.
If you were not provided a contact, you can call them or use the chat or contact form off their website. Let them know who you are, what project you are on and that you are trying to track down a contact and need dev help getting going.
I have built a site and have several social networks to promote it, and sometimes I have giveways to people which I normally have through facebook. The giveaways normally require that the person subscribe to something (as a counterpart of receiving the giveaway or participating on trying to win it), but facebook and other sites just are bad for these kind of things, specially proving that you subscribed to anything.
So here's my thought:
Use a fillout template (like a HTML FORM)
person login with a FACEBOOK Account
Based on that Facebook account, person subscribes to
newsletter, likes a page, whatever, but everything done through that
FORM-like thing, logged in, one step to participate.
In your experience, is this even possible? with what? CSS, HTML, JSQUERY...
This time I'm opened to anything you can guide me, I'm tired of trying to work
giveways through social networking site's GUIs is just annoying...
Thanks for all the help you can provide.
Alban
Sounds like you want Oauth and OpenId. It's not particularly easy to set up, but it's very effective. If you sign into stackoverflow using google you're probably using it.
According to wikipedia facebook no longer support it, using facebook connect instead, but almost everything else does.
this question may sound stupid, but im getting frustrated from searching around, and i cant manage to do that:
I want to create a button on my web (not an applications if that matters), and when the user will click on it, it will post a dynamic message on his wall.
Do i have to use javascript SDK for it, or is there a simpler way?
Thanks!
You have to use Facebook Connect (Facebook SDK for Javascript).
Take a look at this:
https://developers.facebook.com/docs/javascript/quickstart/v2.2
But before use this API you need to create an APP ID in the Facebook developers page and use this ID to authenticate through OAuth:
https://developers.facebook.com/apps
This link also explains you how to use Facebook SDK with jQuery
https://developers.facebook.com/docs/javascript/howto/jquery
I hope it helps.
Edited:
If you want something really simple. You can use Social Plugins to allow the user share your website. But I'm not really sure if you want to post a custom message for the user.
https://developers.facebook.com/docs/plugins/share-button/
i am added a facebook share button to my website it is sharing or posting things to profile timelines but it is not sharing or posting anything to my page(like fans page in facebook).Is there anyway to choose to post to your fan page? any one can help me? plz..
Considering whatever is the "things" in your website, say a product with id 123, for example.
You can make users like it/share it using the standard fb-like button.
When they do like it and/or share it, it comes up as a thing they liked on your website. If that object of yours, has a proper URL with proper meta-tags, it will show up nicely on FB as a story. Good guide here
You can also use the facebook debug tool for testing if the sharing, meta tags are all working as expected here.
If you want your page to be the object of sharing, the only thing that can be done is users can like your page from your website. You cannot share stories from the API to the page, as the page is not an entity. Meaning its not a user.
So, if the page said,
User XYZ liked item ABC on yourwebsite.com
it won't make much sense to the people who see this.
Instead if userXYZ liked an itemABC on your site, the following update on FB will make much more sense.
UserXYZ liked itemABC on yourwebsite.com
(This will have a proper pictorial representation and a clickable link to your website if the like button and the destination url are configured correctly)
I am creating facebook integrated asp.net web application.I am getting the friends of
logged in user in a grid. I also have the profile pic of the friends. Now i want that
clicking on the pic of a friend should display friends of that friends
(lets say, logged in user is ABC. And he has two friends xyz and def. Now i want that
clicking on the pic of xyz should display the friends of xyz in the same grid.
Can anyone provide me javascript for that or is there any other way?
Any help is appreciated.
Thanks,
Isha.
You cant do this. You can not get a list of friends of a friend of the user that authenticated the application. That's a mouthful! :P let me try simplify -
Lets say you authenticate an application - and allow that application to view your friend list. For the sake of this example let us say that I am in your friend list - and the application has now found me to be a friend of yours. The application can not see MY friend list because I have not authenticated the application. This is an issue of privacy and it is simple not possible with the facebook API (and shouldn't be possible)
There are two problems about that:
1- Facebook see that behaviour like spam and in his politics is prohibited to do that.
2- To see your friendos, the aplication needs permissions like user_friends, and if i am not autenticated with the app, it cant get my access token and cant ask for this permisions, so the app cant look my friends.
Another tip is that there is not a good idea to make a questions saying what you want and asking for the solution like
"Can anyone provide me javascript for that or is there any other way?"
Is better if you expose what you did, the comunity correct your errors and we camo to a solution...