Questions tagged [sdk3.0]

10 questions
8
votes
1 answer

Facebook iOS SDK 3.0 Re-Authorisation

I have a few of questions about the new FBSession reauthorisation (reauthorizeWithPermissions: behavior: completionHandler:) in facebook sdk 3.0: Once someone has logged in via facebook on my app, on certain pages I would like to re-authenticate the…
Anand
  • 81
  • 1
  • 2
7
votes
1 answer

Facebook errors related to auth.extendSSOAccessToken

I am using the Facebook SDK 3.0 for Android in my app to post updates on peoples walls. In my Insights area of facebook, it says that about 25% of my API calls are resulting in an API error. Under the 'most common API error' it says…
Pastarama
  • 83
  • 6
1
vote
0 answers

Post on friend's wall using PHP SDK 3.0

I have a friend, Bob, which allowed my app for tests. The app has publish_stream perms. publish_stream desc : Enables your app to post content, comments, and likes to a user's stream and to the streams of the user's friends. With this permission,…
John Cage
  • 11
  • 2
1
vote
1 answer

Web page access in iPhone Application

Is there any way for accessing the web page in iPhone application, without address bar and bookmark bar. Application load the web page whose address is prefix in coding.
Siddiqui
  • 7,662
  • 17
  • 81
  • 129
1
vote
1 answer

facebook android sdk 3.0 login another activity crash

I use android sdk 3.0 login code Session in the MainActivity can run .. but I move to new Activtiy FB.JAVA.can't run .click button crash.. plase how to fix: MAinActivity.JAVA code public void fbautotest(View v){ fb myffb=new…
1
vote
2 answers

Facebook SDK 3.0 upload video in android

my codes to upload video: request = Request.newUploadVideoRequest(Session.getActiveSession(), new File("/mnt/sdcard/DCIM/Camera/VID_20130317_185519.3gp"), FBRequestCallbacker); Bundle params = request.getParameters(); if…
hjchin
  • 864
  • 2
  • 8
  • 25
0
votes
1 answer

drag gesture implement wrong with sdk 3.0

I want to implement a Drag gesture within a LinearLayout view,and there are some components contained in it,such as TextView,button. Now i use APL level 11,3.0 SDK to design it according to Android offical document.the methods included in my codes…
0
votes
1 answer

Dockerfile build error using Powershell for windows 10 and sdk 3.0

If I build my docker file using cmd docker build -t myimage -f Dockerfile. getting this error. unable to prepare context: unable to evaluate symlinks in the Dockerfile path: CreateFile F:\Docker\demo\Dockerfile: The system cannot find the…
0
votes
2 answers

Dynamic View Creation in Iphone?

can any one please tell me how to create Dynamic views in iphone. And I want to know like what is difference between custom views and dynamic views in iphone. Acutally i went throught google but i didn't find any proper answer. And I have one more…
adusum
  • 41
  • 5
0
votes
1 answer

iPhone programming post data

i am trying to post data from iPhone to PHP web server. Here is my following code: NSString * fname = @"Brain."; NSString * location = @"Germany"; NSString *post =[NSString stringWithFormat:@"fname=Test&location=Germany"]; NSData *postData =…
QLiu
  • 271
  • 2
  • 8
  • 23