Motorola Droid :: Tag A Friend In Facebook Post On Phone?
Mar 12, 2010
I hardly ever use facebook, and almost never from my computer. However, I do know you can tag a friend in a post using "@" in front of their name. I did this from the Droid and it just started the post with the text @My Friend content content content... It didn't actually tag him.
Anyone know if this just doesn't work from the Droid or what?
View 3 Replies
Mar 29, 2010
I have youtube connected to facebook and twitter via a google account. if a video is uploaded using the Android youtube application, shouldn't it automatically post to facebook and twitter, too? (or is that just for youtube in a browser?
View 1 Replies
View Related
May 16, 2010
Is there a way to do that conveniently? I am new to twitter and want to add all of my friends.
View 5 Replies
View Related
Jun 24, 2010
Can the EVO post videos to Facebook using the qik app?
View 1 Replies
View Related
Jul 29, 2010
Anyone know how to remove the "via motoblur" when you post a picture to facebook?
View 4 Replies
View Related
Oct 12, 2010
I tried searching this forum for this answer but could not find one. Please excuse me if this has been asked and answered before. Please provide link to answer if it has.
I am wondering if there is a way to post a picture I took with my X10 to my facebook account. Someone had told me, all I needed to do was long touch it and a set of options would appear to let me do that. But I am not getting the list of options. Am I doing something wrong? I am browsing my pictures via mediascape.
View 3 Replies
View Related
Aug 4, 2010
How do you post a standing photo on facebook from x10mini? my photos keeps being posted laying down which is a bit annoying.
View 1 Replies
View Related
Aug 26, 2010
How to post message to Facebook using HTTP in Android? Maybe there are more simple ways?
View 1 Replies
View Related
Nov 24, 2009
I just got back from a weekend in Julian and I was very happy with the quality of the pictures. Best "point and shoot" I have ever owned (not trying to compare it to a "real" camera). Is there a gallery here to post pictures? Or should we start a thread with links to Flickr or Picasa, et al, with Droid-taken pics?
In the meantime, here is a link to a pic I took this weekend:
Picasa Web Albums - VanceMcAlister - Orchard Hill Inn
View 2 Replies
View Related
Jul 19, 2010
I'm making an application that is posting some information to your facebook wall using facebook sdk for android. This works, but I can't seem to get new lines on the posts. I have tried
but it doesn't work. Any suggestions?
Here is my code...
View 2 Replies
View Related
Jul 22, 2010
I have unroot the phone and get problem with friend stream and facebook. I have a problem with friend stream and facebook account. Everytime I try to setup the account it tells me that "the service is currently unavailable. Do you want to try again? If I say yes get same message. I have been into facebook account setting all platform applications where turned on so I turned it off and then back on and still the same.
Tried turning the phone off then back on same thing happens. Rooted the phone again and then restored from nandroid. Still the same, so installed the rom I had before and retried still same message. Unrooted the phone again and get same problem. Also tried removing the apps from facebook application settings. When I connect I get email saying it is connected, facebook then shows htc sense back application settings, and platform apps shows htc sense in there.
View 2 Replies
View Related
May 5, 2010
Is it possible to sync my phone contacts manually with FB instead of FB dragging my entire friends list into my phone? Also, does anyone have a problem with Friend Stream not updating automatically (I have it set at every one hour).
View 2 Replies
View Related
May 28, 2010
I'm running 2.1 on my Sprint HTC Hero and I didn't have any problems syncing my contacts to their Facebook accounts.
My problem is, is that the phone took every friend off Facebook and put them in my contacts. How do I take that off. I don't need all 856 of my facebook friends in my phone. And to make it worse half of the numbers are like 1-800-Ask-Me.
View 8 Replies
View Related
Sep 5, 2010
I recently added a couple of friends to my Facebook account, and now I want to link them to their Google contact in my phone. Problem is, I can't find them in the options... If I go to the Facebook app, I see them, but when I go to the Google contact to try to link it, they aren't there. I've done some searches and it seems like they are supposed to just pop up randomly. It's been almost a week and that hasn't happened yet.
View 7 Replies
View Related
Jun 8, 2010
It's annoying enough to have profile based news feeds from on the computer, but it makes Friend Stream almost unusable for me -- I really don't want what happened in this week's Office, or what Green Day is doing, or what Lost fan's favorite Hurley moments are in Friend Stream. Is there any way to disable these (or better yet, remove them from Facebook all-together?) Is there some privacy setting somewhere in Facebook that I've overlooked?
View 1 Replies
View Related
Jun 15, 2010
Over the last couple of weeks, I've had some problems with Facebook for HTC (between contacts and FriendStream). Through performing some fixes, I've had to remove my Facebook account from the phone, and set it up again twice. Well tonight, after removing the account, I could not get ANY of my contacts to show up at all. This includes my regular Google contacts (not just the ones synced with FB. It looked like the phone was trying to sync and never loading when I opened the people app.Well, this went on for about an hour with no luck, even with rebooting several times. I finally decided to setup my Facebook account again. Sure enough, once I setup the FB account, all of my contacts showed up fine with no syncing issue. The problem is, now when I go into a contact that has no FB contact link, press the "link" icon on the top right, select Facebook, it lists multiples of ALL of my Facebook friends. Almost as if each time I setup my Facebook account again, it just re-imported all of my FB friends without replacing them.How can I delete these duplicates, or even all of my Facebook contacts / friends from my phone, and re-import them? Anyone else have this issue? It seems that removing my Facebook account from my phone not only causes problems with all of my regular Google contacts, but also doesn't delete the Facebook friends left behind on the phone.
View 3 Replies
View Related
Jul 22, 2010
I have a problem in posting a message on friends wall in facebook. I write below code for posting a message.
private void postwall(){ try { FBRequest streamRequest = FBRequest.requestWithDelegate(new FBRequestDelegateImpl());
Map<String, String> parameters = new HashMap<String, String>();
frdlist = new String[list.size()]; for(int j=0;j < list.size();j++){
if (list.get(j).isChecked()) { frdlist[j]=String.valueOf(list.get(j).getUserid());
parameters.put("message", "HI.... its a test application of Dates Near Me");
parameters.put("attachment", "{"name":"Facebook Connect for Android","href":"http://code.google.com/p/fbconnect-android/","caption":"Caption","description":"De scr iption","media":[{"type":"image","src":"http://img40.yfrog.com/img40/5914/iphoneconnectbtn.jpg","href":"http://developers.facebook.com/connect.php?tab=iphone/"}],"properties":{"anotherlink":{"text":"Fac eb ook homepage","href":"http://www.facebook.com"}}}");
parameters.put("auto_publish" ,"true");
parameters.put("target_id" ,frdlist[j]);
parameters.put("uid" ,String.valueOf(FBSession.getSession().getUid()));
streamRequest.call("stream.publish", parameters);
} } } catch (Exception e) {
// TODO Auto-generated catch block e.printStackTrace();
} }
I am passing three values: message,target_id and uid. All values I get perfectly. But when I check my friends wall that time message is not display on wall.
View 1 Replies
View Related
Oct 11, 2010
I have two options to share web pages, facebook and friend stream. Can someone tell me what the difference is please?
View 3 Replies
View Related
Jul 19, 2010
Is there a way to link your Facebook contact with this phone like the HTC sense ui so that the contact have a fb photo instead of a blank face? I tried to facebook account login in settings already but no go
View 33 Replies
View Related
Dec 16, 2009
who is using google voice and have the top 10 friends and family on their plan. Does your top 10 still work? Do i add my google number in my top 10?
View 21 Replies
View Related
Nov 18, 2010
I am using facebook sdk and with the help of example given with that SDK i developed a code to login and store access_token into database
i have 2 problems:
1). when i try to fetch access_token from database and pass it to facebook it doesn't allow me to post on wall using that example given with that facebook sdk, why is that so??
2). i gone through that facebook.java code, but what i got is that to post on a wall i got to open a dialogue box as there is no other method to pass my message straight away and post. Please tell me solution towards it or tel me wat should i do when i want to post on a wall without opening a dialogue box
code:............
Whats wrong with above code.. its not posting on wall and giving me Wall Post: empty on phone and emulator both.
View 1 Replies
View Related
Sep 2, 2009
I'm developing an application related to daily horoscopes. I have to add a functionality that allows user to post his/her horoscope on his/ her facebook profile. as far as i know we have to get some permissions from the user to post things to their profiles. but i don't know how to do that from android.
View 4 Replies
View Related
Mar 6, 2012
S moy Optimus V doesn't have much space on it and the Facebook app is relatively large so I don't have it installed. Every once in a while I see something I want to take a picture of and post it to facebook. Are there any apps that will allow me to do this without having the actual facebook app installed?
I know there are websites that you can hook into your facebook account to post things without going to the FB website but I'm not sure of any apps that might work in the same way.
View 1 Replies
View Related
Mar 13, 2012
I've always wanted to post pandora tracks on facebook how can I do that on my DROID x I kno how to do it on a desktop jst never could figure out how to do it on my mobile phone. I wnna be able to post songs when I listen to them at wrk on my fone.
View 1 Replies
View Related
Oct 3, 2010
I have foursquare installed and have connected it to update to twitter and facebook. but...my checkins don't post to either! i have connected and disconnected and logged out and back in on my HTC Hero and my computer. any suggestions?
View 10 Replies
View Related
Jan 31, 2010
I love TweetDeck on my desktop because I can post the same update to twitter and facebook at the same time. Are there any apps for android that will let me do this? I currently use Twidroid for twitter and Bloo for facebook.
View 2 Replies
View Related
Jun 10, 2010
All Facebook SDKs for Android require an "application key", which I assume is the API key for a facebook application that must be created on Facebook. Since all I want is to post to my wall without dealing with Facebook applications, is there an SDK for Android that doesn't require these api keys?
View 2 Replies
View Related
Jan 28, 2014
i updated my moto maxx to kitkat and since the update i cant post picture comments on facebook no matter what web browser i use! nothing happens! like if a friend posts and i go to post a comment thats a picture when i push the camera button nothing happens. it works on my wife's htc one.
View 4 Replies
View Related
Mar 24, 2010
Is anyone else having issues posting status updates on their Facebook or Twitter using the stock apps?
View 2 Replies
View Related
Sep 27, 2010
i am struggling with facebook posts from android application. I am developing a application in android from which i want to post some text to my facebook profile.
View 7 Replies
View Related