I'm developing a social media hub for Android, which is planned to grab the tweets ect from the installed apps. The advantage of this should be that it doesn't need login on itself. the app will only combine all social media / messaging services for my custom rom.
My question was, how do i get the recent timeline from the user into my app (grabbing it from the twitter app on the phone)
Thanks in advance,
djpbx.
You are welcome to contact the authors of every Twitter client for Android and see if any of them offer an API that supports this. I suspect that none of them do, and hopefully they lack any security flaws that would allow script kiddies to get at this private information.
I'm developing a social media hub for Android, which is planned to grab the tweets ect from the installed apps.
That will only work if the apps cooperate with you. Again, this is unlikely.
Related
I'm creating a mobile game using Godot for IOS and Android, firebase and facebook plugins are available for the android version only. Therefore it's not an option because I want to a cross platform solution.
I have a websockets server, I could use that to do the authentication (as a client to call facebook API). My only question is that would the user experience / process be the same? I think not, The user would have to sign in from the browser correct? He won't be able to just use the gmail installed on his phone or facebook, is that true?
We have a requirement for login with WhatsApp in one of my Android and iOS app, the way we do it with Google and Facebook login. We also need to get the profile data and contact list pertaining to the respective WhatsApp login so can anybody help me on this?
Kind of the point of WhatsApp is that it's intentionally secure. It's not going to allow you to get contact lists. You can use click to chat via their Whatsapp by calling https://api.whatsapp.com/send?phone=15551234567 as per https://faq.whatsapp.com/en/26000030/?category=5245251. Just look up API on https://faq.whatsapp.com for the full list of integrations with Android and iOS.
Used OTPless in one of my previous company. They provide seamless Login via Whatsapp Solution (SSO). It's free and easy to integrate with any platform.
I want to do something really simple: in my mobile App the users can Link something they're selling on Amazon. I want to include in my App a "button" that redirect to Amazon to buy the item and earn the 6% of the Mobile Associates API..
BUT my app is written in Xamarin..
Does anybody knows how to integrate the "Mobile Associate API" in a Xamarin APP? Is there any way to get the link without the Mobile Associate API? Something like open a Link in a browser with a parameter in Query String or a Token as Authentication?
You can integrate any native Android library into your Xamarin Android app by creating a Binding Library for it.
i'm going to develop a sort of cloud based application. Since I develop for hobby, I don't want to pay a server.
I'm wondering if Google or Facebook allow user to sync sqlite OR json databases through their server. For example: I'd like to sync - after the Google+ app login - the data of my app, so that the same person, on his tablet, can use the data he produced on the smartphone. Can anyone point me out some documentation that explain me what services should I use and how? Thanks.
With every Google account comes Google Drive. That link leads to the documentation for their API, but you will want to use their libraries as I presume.
Basic understanding of OAuth workflow can be beneficial.
I want to develop an app which will appear like a plugin when the user types something to a social network apps(comments or posts in facebook/tweets in twitter e.t.c). The app should appear as a handle so that the user will not be interrupted while using the social network. The app should be able to log the messages posted by the user and the user should be able to retrieve any logged texts from app so that he/she can reuse the same texts while posting.
Is it possible to implement such an app along with the social network app running? Kindly provide any links/ideas/design approaches....Waiting for your guidance..
Thanks,
Srooth
I don't think you'll be able to show a "handle" (unless you make a javascript plugin that runs on web browsers) but you can make the app I suppose. Here's one approach:
Create a web app that uses site-specific authentication and ask for permissions from all the social networks you plan to target.
Get permissions to read posts, comments, tweets etc using the site's API.
Periodically retrieve this stuff using the API from the sites and store them in your own server.
Write an android app that has a nice UI that retrieves this data for a particular user from your server (via your own REST API) and displays it in the mobile app.
This is a very high-level overview and the actual implementation is gonna be difficult and will take a while. But the basic approach should work. Good luck!