How to integrate Facebook in my AribaWeb WebApplication? - facebook

My web application is developed using AribaWeb framework and I want to integrate my application with Facebook. I need to post some info to my product's wall when i'm saving my sample page. I have some doubts to do this,
Is there any need of Web services. if so what are they?
Is it possible to do without JavaScript?

Study the facebook API. I am sure there is a REST service that allows you to do that. Then you can send a REST request from your application using available REST frameworks such as RESTeasy or Jersey .

Related

Facebook Conversions API implementation with Google Tag Manager Server-Side

Hi, I have a question concerning the implementation of Facebook Conversions API via Google Tag Manager Server-Side.
We are using DNN /EVOQ CMS which is a .net application.
Everything else is in place concerning Facebook Pixel and Business manager.
I also tested it on the Graph API and it worked fine.
It’s just the last step that is missing.
I know one way to implement the Facebook Conversions API is with Node.js Business SDK.
https://developers.facebook.com/docs/marketing-api/conversions-api/using-the-api
My Question:
If you use Google Tag Manager Server-Side, do you still need to add the Node.js Business SDK ?
Thanks in advance
The Node sdk is to send FB conversions directly to FB.
In your case, you send all the FB conversion info with the hit to your GTM endpoint and then you make a custom http request tag and retranslate all the info you've got from your backend into a proper FB conversion request.
That's pretty much it.

How to implement login through Facebook or Twitter or Gmail account feature in Play Framework2.0 Application

I am working for designing a web site where I use the Play Framework web application framework. I want to give a feature for the end-users to login to my web site using Facebook, Twitter and Gmail. But how to implement the same feature in Play framework as it uses scala.html? I have searched for the same, but I got the links related to php application. Is Facebook, Twitter, and Gmail provide APIs free of cost?
Thanks.
http://securesocial.ws/ is answer for your question, is the Play framework plugin, you can use it for Authentication and Authorization through the Social sites. Also it supports for Java & Scala and its an active project.
I've successfully implemented SSO Authentication with Gmail using the play-pac4j library which also supports Facebook and Twitter.

Accessing Joomla CMS through iPhone using REST API

I have a web site that is built using Joomla CMS 1.5
I need to access articles in my iPhone app?
Is there is a REST API (or non-REST API) for Joomla that provide access to articles?
I have found Joomla-REST-API but it does not provide access to articles...

Iphone Application with Symfony 1.4

I'm building a simple iPhone app that synchronizes to a webservice served by Symfony 1.4. This app requires the user to be logged in.
My question is, how can the user log in Symfony from the iPhone app? And how can I keep the session opened through the next petitions? Is this secure?
Chapter 15 of the Practical Symfony book talks about webservices, but I can't find any guide about sessions.
Thanks in advance
You can use SOAP web service also. But this is little complex. You can send the file attached to XForm and Post to the service
Detailed implementation of SOAP in PHP
http://www.vankouteren.eu/blog/2009/03/simple-php-soap-example/
You can build a rest service for symfony modules. You can get login through REST service.
Your example service will be like this
www.example.com?username=user&password=pass

can web2py support RESTful api calls? if so any pointers on how to build one?I

I want to configure a simple webapplication to support an iphone app to connect with it in RESTFUL ways. Initially have a user login session enabled from the iphone to the web app. I'd like the iphone app to send a NSURL call to the webapp, with user and password and have the webapp respond if the suer exists or not. Pretty simple. And I want to do it with web2py. Is this possible? Any clues?
I think you should post it to web2py group on google groups.
web2py#googlegroups.com
I know this question is a bit old now, but Massimo recently posted a video demonstrating a new experimental RESTful API for web2py. See also the Google groups posting "video about new RESTful APIs" .