Been trying to figure this out all week. Intuit doesn't officially have a PHP sdk, but they link to one that hasn't been touched in 2 years.
I have followed all the steps here:
https://developer.intuit.com/docs/0020_customeraccountdata/007_firstrequest
And that all works fine. I can use the API Explorer to begin pulling information.
My question is how do I use this outside the Explorer?
Not sure how to use the .p12 file and when I use the linked SDK, I continually get Error 400 Code:MissingRequiredField,Type:SYSTEM.
Quite lost on which direction I need to go to tackle this. New to SAML.
Please help me find the best way to use this API with PHP.
Thanks
Related
Hey guys i have this project which needs to download APK file directly from google play store to the PC using an PHP script. I have looked into the python script which is very old and doesn't work now. I see sites like apkpure.com and apk-dl are doing it.
I have used google play link scraper Link to scrape the application details from google play store. But i can't figure out a way to get the application itself from google play.
Can anyone guide me in a right direction for this?
Really appreciate it guys.
Thanks.
The link scraper that i use only fetch the application information not the application itself. I also looked into chrome extensions like some of you suggested but they don't hold the answer that i require. Please suggest something else.
I need to develop an module that interact with TFS for our internal office application, but the project is in php, i have done searching a lot, but could not find a sdk or api in php that could do the following.
listing the work items for a tfs user
creating / modifying work items.
View work item details and get attachments
modifying work items
can anybody suggest an api / sdk that could do the above said actions,
note: we are not interacting with Visual Studio Online, we are using hosted tfs in our own premises.
thanks in advance.
Use the Java SDK for TFS and the PHP/Java Bridge and then try something like this (psuedo code only)
<?php
require_once("java/Java.inc");
$tfsTPC=new java("com.microsoft.tfs.core.TFSTeamProjectCollection","http://tfs:8080/tfs/DefaultCollection");
$projects = $tfsTPC->getWorkItemClient()->getProjects();
?>
P.S. My PHP knowledge died a long time ago, so I'm not sure if the sample code is quite right, but hopefully you get the idea.
Also, even though it's the Java SDK you're using you should be able to follow all the C# samples since the SDK methods are almost identical between the .NET and Java SDKs
I have struggled with google's php library, the latest version of which is available on their own website. While the simple google plus example they provide works fine (it's a basic login with GET features), there is no way to add a moment activity via app in php - at least not for me.
Their own example isn't working (the example can be retrievd in the library: examples/moments/simple.php)
Someone provides an answer here but the button demo they provide isn't working either if I press (authorization is fine, posting produces no action.
Does anyone have a suggestion on how to change their own php file so to make it work? I tired removing all the code and resetting it to the basic action: at least I am not getting oauth or php errors, but the file produces no action.
I understand that posting moments in php is not currently supported, but I have a web app and android implementation wouldn't work for me I think.
At the moment you need to get the library from the trunk, you can find instructions here.
This gist documents how to request permission and write activities.
The old moments api has been deprecated and those samples are for the old API, I'll remove them from the codebase as soon as possible. Thanks for raising this question!
I am trying to find a tutorial on how to build an oAuth2 Provider with PHP. I googled about it and no results came up. Exists out there any guides on how to do this? Or something like a library that can help me implement an oAuth2 Service Provider with PHP?
https://github.com/bshaffer/oauth2-server-php this will be helpfull for you to get idea.
I've been looking for the same thing for a while now, but I haven't found much. oAuth2 is still in draft. The current version as of this writing is 30.
The best things I'v found are a Google Code project that supports version 9 of the spec, which could be fairly outdated. You can find that project here.
I have also found this article on how to write it yourself, though I haven't looked at the post in sometime - How to write a complete OAuth Provider in PHP5.
It looks like there is some movement with the Zend Framework 2 which looks hopeful. It looks like an RFC was in June, 2012: RFC - OAuth 2.0
I'm certainly anxious for something to use myself.
Similar questions have been asked as well for reference which include the links to projects referenced above:
Set up a PHP OAuth Provider
Are there OAuth 2 server side PHP or Java implementations?
Hope that helps!
Anyone find/use/recommend an oAuth2 provider library/class?
I am trying to integrate webconnecter and my own website for automatically syncing from website to quickbook software..
I am trying keith parmer's webconnecter and his php dev' kit.But I think I need to create a web service with C# ,to connect each other..
(I am not fluent in C#.
I need a solve only from PHP..)
these are my references
http://www.consolibyte.com/wiki/doku.php?id=quickbooks
and
http://developer.intuit.com/qbSDK-current/doc/PDF/QBWC_proguide.pdf
I think I am confusing through the lot of codes and reference guides...
Please some one help me to reach to the correct path.
Download the QuickBooks PHP DevKit, and follow the quick start guide.
When you have questions, use the support forums:
https://idnforums.intuit.com/categories.aspx?catid=56&entercat=y
http://consolibyte.com/forum/
You might want to try the search too. There's like 100 other threads about QuickBooks and PHP out there already, and Google provides a ton of QuickBooks PHP search results.