Questions tagged [acaccount]

An ACAccount object encapsulates information about a user account stored in the Accounts database.

Developer.apple.com entry.

78 questions
3
votes
1 answer

ACAccount Facebook property username return email and sometimes the nickname

When I access to the Facebook Account using ACAccountStore to get an ACAccount object I noticed that for some profiles the ACAccount.username give me the Facebook email but for other profiles give me the nickname... How is possible that the same…
Fry
  • 6,235
  • 8
  • 54
  • 93
3
votes
0 answers

How to export Facebook account to Settings

Cannot export Facebook account to System accounts storage after successful login with publish permissions. Any suggestions? NSString* refreshToken = nil; NSString* accessToken = [[FBSession activeSession]accessToken]; NSDate* expiryDate =…
3
votes
1 answer

TWRequest code works but very slow to show?

I'm working with TWrequest to display my twitter lists in a tableview. The following code works. The problem is it is very slow to update the table. I am NSlogging the request response (which happens very quickly), I am also looping through each…
Andrew Davis
  • 2,310
  • 1
  • 24
  • 43
3
votes
1 answer

How can I tell the difference between an app not having Twitter access and Twitter having no accounts Setup?

I understand how to ask for Twitter access using: requestAccessToAccountsWithType:withCompletionHandler: But this pops a dialogue if the app isn't authorised. How can I silently check to see if the app is authorised? I can check the number of…
Undistraction
  • 42,754
  • 56
  • 195
  • 331
2
votes
0 answers

Issue when user 'revokes access' for App while I am using Twitter framework

I have used Twitter framework provided by Twitter itself for implement 'Login with Twitter' functionality. As per their documentation, it leverages with Twitter account of iOS system (account that has been configured by user in iOS Settings App).…
NSPratik
  • 4,714
  • 7
  • 51
  • 81
2
votes
0 answers

Will new Facebook Login affect ACAccountStore

In Facebook's New Login and Graph API 2.0 announcement they detail all the changes coming to Login, like allowing a user to opt out of sharing specific personal information like email, birthday, and friend list. I don't use the FB SDK in my iOS app,…
djibouti33
  • 12,102
  • 9
  • 83
  • 116
2
votes
1 answer

Permission Alert in iOS when making networking request

When making a networking request using the ACAccount and SLRequest objects in iOS, an alert appears when the app runs that asks X app would like access to Twitter accounts with buttons for "Don't Allow" and "OK. Where does this alert get called…
noobsmcgoobs
  • 2,716
  • 5
  • 32
  • 52
2
votes
1 answer

Get ACAccount Facebook user full name is null

i'm trying to get the user full name of the Facebook account, the app already have the permissione in the Facebook iPhone setting, some day ago this code works, but know doesn't, i can't understand why, this is the code: ACAccountStore *accountStore…
Piero
  • 9,173
  • 18
  • 90
  • 160
2
votes
2 answers

When should I renew an ACAccount? Or, how to check if the credential is expired. (Facebook)

Recently I was assigned to survey how to use iOS framework ACAccount and Social to implement facebook post function. It is quite simple to gain access of the account configured in setting. if(!_accountStore) _accountStore = [[ACAccountStore…
Hubert Wang
  • 502
  • 5
  • 17
2
votes
2 answers

Getting email using ACAccount for Facebook iOS 7

First of all, I don't want to use Facebook SDK, so I managed to do this, which is working, but I don't know how to retrieve user's email, even though it is on my permissions request. ACAccountStore *account = [[ACAccountStore alloc]…
Badjano
  • 418
  • 7
  • 23
2
votes
2 answers

Twitter account created with tokens fails on iOS7

I am working on an app running on iOS6/7, with custom views to post on Twitter. To improve user experience, if no system accounts are available, I would present the user with a webview to enter their credentials, store them in the ACAccountStore as…
Fr4ncis
  • 1,387
  • 1
  • 11
  • 23
2
votes
0 answers

Check for access status of ACAccount?

There's a method exists which allows the user to grant access to a social account: - (void)requestAccessToAccountsWithType:(ACAccountType *)accountType options:(NSDictionary *)options…
Andrew
  • 15,935
  • 28
  • 121
  • 203
2
votes
1 answer

Is ACAccount identifier unique for all devices?

Is property identifier ACAccount unique for all devices? Documentation can't tell anything, just "unique identifier". On one device or on all devices?
werbary
  • 1,105
  • 2
  • 14
  • 43
2
votes
2 answers

FacebookSDK - Unknown Type ACAccountCredentialRenewResult Error

I have installed newly updated facebook SDK 3.5 in my mac. I took the tutorials given in facebook developer website and integrated the facebook SDK in my XCode Project. Facebook SDK Link Tutorial Link I just tried to run the facebook sample project.…
Dinesh Raja
  • 8,501
  • 5
  • 42
  • 81
2
votes
1 answer

Handling Multiple Twitter Accounts on SLRequest

In using SLRequest there are some great tutorials for Tweeting in an iOS app. However, most of them simply pull the last object from the Twitter accounts. Since there can be multiple Twitter accounts signed in on iOS Settings, is the developer…
user717452
  • 33
  • 14
  • 73
  • 149