How can i upload attachments to Quickbook Desktop via Quickbook Web Connector - qbxml

I'm working to sync data such as invoice, purchase order, sales order,... from my application to client's Quickbook Desktop via Quickbook Web Connector.
But i don't know how can i upload attachments. Please help!

The SDK does not support uploading documents.

Related

Get application data from iTunes using PHP

I have an application in appstore and advertising companies in Google AdWords and Yandex Direct. Users come to iTunes page from search and context ads using special link.
How do i get data from some Apple service to know how many people installed an app after coming by adv link?
Well, i didn't find any PHP solution to access iTunes Connect analytics and started to develop my own version: https://github.com/aokozlov/itunes-connect-php
In documentation Reporter tool is recommended to pull iTunes Connect Financial and Sales data, it is written in Java.
There is also unofficial package in PHP that does the same:
https://github.com/mikebarlow/itc-reporter

Does dropbox provide new account creation via SDK in IOS app?

hi Friends i have to implement Drop box API in my project. Does Dropbox provide new account creation via SDK in IPHONE application? or Already signed user only Acces Dropbox through IOS application. Please Help me
Thanks in Advance
No, the Dropbox API does not currently offer a call for account creation. Users can create accounts via the Web site or official app if necessary.

Can i access iOS mail app data?

Is there a way using which i can access attachments downloaded though the iOS Mail app? I need to access photos or other documents in my app.
No You cannot access the Mail App Data in any way. It is against the Privacy concerns of the iOS device user. However, the images in the user's iPhone Gallery can be accessed and used in the app according to your needs.
If you register your app to handle various file types, then you could select open with yourapp from within the mail application. So you could send a file from the mail application to your app. For more information see https://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/RegisteringtheFileTypesYourAppSupports.html#//apple_ref/doc/uid/TP40010411-SW1
No, You are not authorized to take any device data without user interaction that too limited access. You can create your customized mailing data with you have sent mails.

reading the inbox of iphone email

I want to transfer data from my desktop pc/mac to my iphone app. To do so I think, that email is a good way. Workflow:
MAC sends email with data, iphone received email, application read the email (and the attached data) and works with it.
So now I search for a way to access (read only) the email inbox of the iphone via cocoa. Is there any framework to to so?
Nope, in general it's not possible for one application to access the data of another in iOS.
A few options:
Put a web server on either the desktop or iPhone and download/upload the data
Use a public web-service to (temporarily) host the data
Encode the data as a URL and send that by email. Then the user would press the link which would start your app and import the data
Allow the user to copy data over to the Documents directory of your application (iTunes file sharing). This is how Apple does it in Pages, Keynote, etc.
DropBox (which has an API available)
As I know there's no such a framework in iOS SDK 4.2. You can only send emails within the app (In-App-Mail).

iPhone native app + payment gateway

I want to implement payment gateway for iPhone native app.
I have read in few of the sites that I can integrate apple payment gateway for this through In App Purchase. But if I want to do through In App Purchase then, I have register each of my product with AppStore and set a price margin for each.
Rather I am building something like shopping cart where prices of products are different.
Please guide how should I proceed, is there any other payment gateway that I can integrate with my iPhone native app.
You can use PayPal MECL library for this.
https://www.x.com/developers/paypal/documentation-tools/paypal-sdk-index
From the above link download Mobile Express Checkout Library for iOS and in downloaded zip file two examples will be there one for non-web and other for web.
In non-web you have to keep the business (merchant) credentials in your application refer MECL non-web example accompanied with the library zip file.
If you don't want to keep the credentials in your application then you can handle the product selling through web service, and this is recommended way.
For more information read https://www.x.com/developers/paypal/how-to-guides/how-accept-payments-ios-app-using-mecl