I dont have any idea about IOS development, and I code the web services for IOS apps. We have been given an app that should support login with facebook and login/register of its own.
Now, implementing login/register for the app is not an issue, but I need to know two things:-
1.) How do we implement a login in the IOS app using facebook.
2.) The app should be able to show and save certain events on facebook.
How would I/we implement these two functions. Do we implement these using web side code or IOS code..
Can anyone point me in the right direction..
Thanks
PS: I got to know about facebook-connect while I was selecting the tags ;)
Check the Facebook SDK. They have some really helpful links and tutorials. The Facebook repository from which you can get the ios SDK from is at this link. Also Facebook's developer portal is an awesome place to get started. If you have any further questions please let me know, I might be able to answer them.
Related
I can't find a usefull guide online.
I know i need to create an app from developer fb page, but i don't know what fields and permission i need.
I need to post new articles to a my own page using php.
I read about graphapi page to request token pages but documentation is very bad!
Any suggest how to start with the correct app creation?
For you to create an application using Facebook SDK, you will need to install its dependencies with PHP SDK. THis Getting Started tutorial, should help you achieve this goal.
Once you have done that, there are some guides and articles that might help you start your own development of application, that you can access using the below links.
How to Develop Facebook App with an Example using PHP SDK
FacebookApp for the Facebook SDK for PHP
Facebook SDK v5 for PHP
Hope this helps!
I have integrated Facebook like and share button on PHP website. I was trying to send notification from website to Facebook app users.
Tried the stuff available on internet and facebook developers site but not able to get any clear idea.
Can anyone guide me or provide me a clear source?
This is my first time using Facebook PHP SDK (I don't have much knowledge on Facebook PHP SDK).
Thank you.
I've one website built in PHPFox. The website is functioning properly. Now the mobile apps for iPhone and Android smartphone are under development which will use the same database that PHPFox website is using.
So, I want to make the existing APIs that are used for a PHPFox website available to the mobile apps (both iPhone and Android) as well. I don't want to reinvent the wheel again and want to re-use the same existing code for mobile apps.
I did a lot of research about this. I've spent almost four days on the research. I didn't get a single link which will explain me how to access the existing APIs from a PHPFox website for mobile apps (iPhone and Android).
One option I found from my research is creating new RESTful webservices using PHP or implement any such framework like Slim, apigility, etc.
But I think following any of the above two approaches will be a overhead and re-usability of code will also not be achieved. If the code which is working fine for website should also be used used on mobile apps. There should be no need to write the same code again. That's what I think.
So using the existing APIs from PHPFox website is the best solution that I think, might be I'm wrong. If you think I'm wrong please correct my approach.
If you could explain with some useful example it would be really great.
I've gone through PHPFox docs as well but couldn't get anything useful which could help me in the issue I'm facing. If you are also interested in documentation of PHPFox please go to below links:
http://unity.moxi9.com/docs
http://unity.moxi9.com/kb
If you could find anything useful related to the issue I'm facing please do let me know.
Well everything you are looking for is already there in the docs. Your mobile app would be registered as an app with PHPFox. You can then use their API. The remaining question is, if the end users need to authorize your mobile app from their "normal" web browser or if this authorization can be performed from the mobile app as well. At least that's what I read from the docs. Since you have an up and running installation at your hand: Just try it! Register an app and perform some requests to their API.
I want to integrate Facebook functionality into my Silex website.
To be more precise the ability to sign in with Facebook.
Once the user is signed in I want to also be able to make API calls to Facebook to post or attend events on behalf of the logged in user.
Using Composer I've added the Facebook SDK into my project but now I'm kind of lost on how to proceed with coding the login (auth) part and how to make Facebook Graph API calls and display the returned data.
I've started with the Silex Kitchen Edition (https://github.com/lyrixx/Silex-Kitchen-Edition) as the base for my project, since I'm new to Silex development!
Are there any tutorials available? (I can't seem to find any!)
Would be really helpful if someone could help me out or point me in the right direction.
Thanks!
Hi I have a website that I am creating at the moment I have just created a dashboard for admin users I was wondering is there a way I can embed a Google analytic's dashboard or the elements of the dashboard into my own website.
My initial thought would be an i frame of the web page and then getting the user to sign in
I have looked at different questions surrounding this and people are being told to look at the Developer Guides and the implementing the API into their site, Can I do this ??
My website is PHP based with some HTML I am not sure if I am using a framework that the analytics can be implemented into because at the moment I'm currently using bootstrap for the admin dashboard the rest I have hand coded.
Any guides any examples of people doing this themselves that would be much appreciated.
I would recommend you look into using the Google Analtyics API with a service account. You will only be logging into your own data so there is no need to go though the full Oauth2.
The most current version of the Google PHP client lib can be found here on github under examples you want to look into the service-account.php it should show you how to get working with a service account.
Note: Unfortunately the hello analytics tutorial is out of date and uses the old client lib, don't go there. I have been told they are working on an update for it.