accounts

User/password problems with GetVolumeNameForVolumeMountPoint() (Windows remote drive mount?)

无人久伴 提交于 2019-12-08 01:59:54
问题 From a Vista workstation, I have an attached XP Embedded computer on which I want to programmatically mount a volume locally (e.g., mount the XP Embedded \\MyXPEmbedded\C:\some\path\ to the Vista workstation (mounted to C:\mounted_XPEmbedded\ ). (This is an administrative utility that runs on the Vista workstation that maintains files on the XP Embedded workstation, which is part of a larger device.) I can see the XP Embedded computer from the Vista workstation. For example, I can :

Get account ID of connected stripe account

醉酒当歌 提交于 2019-12-06 22:41:32
问题 When I run a test for connecting a user to accept payments through my application, I will need the account id to charge their account. Stripe\Token::create( array("customer" => CUSTOMER_ID, "card" => CARD_ID), array("stripe_account" => CONNECTED_STRIPE_ACCOUNT_ID) // id of the connected account ); In this snippet (from Stripe), the CONNECTED_STRIPE_ACCOUNT_ID implies the connecting about id which starts with acct_ How do I obtain this ? Thanks, Rich. 回答1: I came here from a Google search with

User/password problems with GetVolumeNameForVolumeMountPoint() (Windows remote drive mount?)

≡放荡痞女 提交于 2019-12-06 06:07:44
From a Vista workstation, I have an attached XP Embedded computer on which I want to programmatically mount a volume locally (e.g., mount the XP Embedded \\MyXPEmbedded\C:\some\path\ to the Vista workstation (mounted to C:\mounted_XPEmbedded\ ). (This is an administrative utility that runs on the Vista workstation that maintains files on the XP Embedded workstation, which is part of a larger device.) I can see the XP Embedded computer from the Vista workstation. For example, I can ::getnameinfo() to resolve the XP Embedded computer's name from its IP address. However, all calls to

Integrating bank accounts [closed]

为君一笑 提交于 2019-12-03 21:34:07
Is there any API to integrate bank accounts into a .NET application? I am looking to provide the user an ability to pull bank statements into my software. Please suggest. You'll need to ask the bank that , which bank are you with? Most major providers allow some kind of programmatic access to their systems. Failing that (and security aside) you could generate a HTTP Request/Response to the banks website and replying on being provided the correct credentials should be able to retreive any information available online (such as past statements) - bonus if they provide them in PDF format. Not sure

Error creating twitter ACAccount on iOS5: NSURLErrorDomain error -1012

元气小坏坏 提交于 2019-12-01 12:45:11
I am having trouble creating and saving a new twitter account to ACAccountStore on iOS5. After performing all the steps to init the account, ACAccountStore's saveAccount:withCompletionHandler: returns NSURLErrorDomain error -1012 . Does anyone have similar issues? My code sample below is using requestToken to init ACAccountCrendential . This object is an OAToken (ShareKit object) initialized with the token and secret received from twitter after completing OAuth . ACAccountStore *store = [[[ACAccountStore alloc] init] autorelease]; ACAccountType *twitterAccountType = [store

Permissions Not Working

我的梦境 提交于 2019-12-01 02:54:51
I've been having some odd problems with permission in Android. I am trying to just get a list of the google calendars a particular user has, but first I need to let them pick the account. I included this line in my manifest: <uses-permission android:name="android.permission.GET_ACCOUNTS"></uses-permission> However I get this error: 12-26 03:26:31.004 13841 13841 E AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{....}: java.lang.SecurityException: caller uid 10105 lacks any of android.permission.GET_ACCOUNTS I had tried something similar with gaining access to

SyncAdapter not being called depending on order of Account setup calls

百般思念 提交于 2019-12-01 02:29:57
I've come across some slightly odd behaviour with my SyncAdapter. The first time I install my app (after uninstalling with adb), it launches and creates an account. Depending on the ordering of some statements (see below), my SyncAdapter's onPerformSync() will never be called; my account under "Accounts and sync" shows the "sync in progress" icon spinning indefinitely. If I then uncheck the sync checkbox next to my app's account, and then recheck it, my onPerformSync() is called immediately. This causes my SyncAdapter to never be called. "sync in progress" icon spins forever, unless I uncheck,

Permissions Not Working

若如初见. 提交于 2019-11-30 22:56:52
问题 I've been having some odd problems with permission in Android. I am trying to just get a list of the google calendars a particular user has, but first I need to let them pick the account. I included this line in my manifest: <uses-permission android:name="android.permission.GET_ACCOUNTS"></uses-permission> However I get this error: 12-26 03:26:31.004 13841 13841 E AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{....}: java.lang.SecurityException: caller uid

SyncAdapter not being called depending on order of Account setup calls

不问归期 提交于 2019-11-30 22:08:09
问题 I've come across some slightly odd behaviour with my SyncAdapter. The first time I install my app (after uninstalling with adb), it launches and creates an account. Depending on the ordering of some statements (see below), my SyncAdapter's onPerformSync() will never be called; my account under "Accounts and sync" shows the "sync in progress" icon spinning indefinitely. If I then uncheck the sync checkbox next to my app's account, and then recheck it, my onPerformSync() is called immediately.

How to reset password in meteor application

南笙酒味 提交于 2019-11-29 18:01:16
I am building a Meteor application and am using the oaf:accounts-entry package to handle my user registration & authentication. I am working on the reset password function right now. However, when I click on "email reset password link", the application doesn't email me anything. Can someone help me or point me to instructions on how to configure the reset password function for the oaf:accounts-entry package? After doing a google search, I could not find instructions on how to configure it. The relevant packages I have installed are: oaf:accounts-entry accounts-password email Thank you!! The