What is the URL for force creating new Xero OAuth 1.0 applications? - xero-api

I have several dozen offices that haven't migrated to OAuth 2.0 yet. One of these offices I transferred to another subscriber, and the app needs to utilize 1.0 until we can migrate. I recall being able to create Oauth 1.0 apps after 2.0 was implemented by using a URL parameter, but I can't recall the actual parameter. Does anyone know how to do this?

https://developer.xero.com/myapps?privateAppCreation=true
This will work until the end of June 2020.

Related

Shopify Data Migration from 1.0 to 2.0

I haven't found anything thing in Shopify's documentation that discusses data migration from Shopify 1.0 to 2.0. I have a lot of custom data that I have created with blocks on several pages, and don't really have to the time to migrate every page? How do we preseve the pages that we've created?
Shopify is not touching the old pages as long as we want. You can keep them as it is and start using build new pages with Shopify 2.0 - we don't need have to migrate each and every page.

Fastlink 2.0 Aggregation URLs from FastLink 1.0

We currently have credentials and access to FastLink 1.0. I'd like to try FastLink 2.0.
The documentation I found # https://developer.yodlee.com/Fastlink_2.0/FastLink_Integration_Guide_for_Web is okay but I am missing a couple key pieces of information.
Questions:
Can FastLink 1.0 users immediately try FastLink 2.0 or is there a setup/migration step?
It looks like FastLink 2.0 uses a different oauth tokening endpoint, is that the case?
How do I create the FastLink 2.0 URLs from my current FastLink 1.0 and REST urls, specifically:
"Getting the token": http://<REST_URL>/authenticator/token
"Rsession Based Launch Parameter": http://<node domain>/authenticate/<cobAppName>/
What is our REST_URL base?
What value would we use for <cobAppName>
Thanks
For Fastlink 2, a separate provisioning is required and its not available Out of box. YOu will need to contact your respective Sales Counterpart for enabling the same.
Yeah, Fastlink2 is based on a different architecture all-together. End points etc will be different.
Once Fastlink2 is provisioned in your respective environment, we will provide you the required end-point etc to invoke the same.
Regards,
Vishal
Yodlee Interactive

Is there code related changes will comes when upgrade to fastlink 1.0 to 2.0

is There any code related changes like getting memsiteid after adding account and all api's call related code when i apgrade my application to fastlink 2.0
There is no changes to the APIs, all the APIs will work as it is.
The changes in FL 2.0 is from UI perspective and also the way you access it. Accessing FL 2.0 is no more dependent on Oauth.

Integrating QlikView with SimPro

Has anyone ever tried to integrate QlikView BI application with SimPro business management software? If so, would be interested to know if you were successful and if so how?!!
Dorey.
Jonathan from simPRO here.
I'm not aware of any clients that have an integration with QlikView but it is a well respected reporting platform with a myriad of ways to extract data from other systems.
A quick scout around their documentation tells me that the easiest option for integration would using their QVSource API connector.
Details are here: http://www.qvsource.com/Connectors-For-QlikView/General-JSON-XML-SOAP-Web-API-Connector-For-QlikView
For simPROs API you would use this in "POST" methodology - ie: supplying the post data as per our API docs at: http://api.simpro.co . Our API uses OAuth authentication and there is dome detail and examples on using that with QVsource at: http://wiki.qvsource.com/General-Web-Connector-For-QlikView.ashx
Whilst we may not be able assist technically with setting up the QlikView system our technical support department can assist with any queries you have in regards to our API calls etc...
Hope that is of some help!
I am going to try and respond to your dilemma, while being a QV expert for the last 8 years I am not too familiar with simpro, however I did quickly browse through their API docs here -> http://api.simpro.co/
I have noticed that they support 3 formats, namely soap, json and xml. For qlikview you would choose xml. I have also noticed that they support 2 authentication methods namely basic auth and O Auth. IN this scenario you would be using basic auth (so you can pass a username and password via the url) as this will also work perfectly with Qlikview.
In your Edit Script, you will notice a "Data from files"-> Web Files, then in the popup you can enter the url from where you would retrieve your information from.
Note you need to pass format=xml to the url, along with your basic auth username and password to the relevant url (which you will find in simpro's docs), for any other format you will need QVSource which has a fee attached.
I hope this has pointed you in the right direction.

.NET client for the Google People API

I do not see a .NET client for the Google People API here.
https://code.google.com/p/google-api-dotnet-client/wiki/APIs
Do you know of any?
I need to get the user's full name, email address, gender and date of birth from Google using OAuth2. I could use it the raw HTTP way, but just to be safe, I want to use a Google provided client API.
Update
Hurray to hand-plumbing
The Google .net client Library can be found on NuGet, the plus package is here Google.Apis.Plus.v1 Client Library
PM> Install-Package Google.Apis.Plus.v1
I'm pretty sure it requires the latest version of Nugget to get it.
But I think you are going to have a small problem. Not all of the information you are after is exposed in the API. Sex and date of birth for example.
You can try it here People.Get. Scroll to the bottom: Authorize it then in userId enter "me" and it will show what the API can get of your data.
All the APIs are available here: https://developers.google.com/api-client-library/dotnet/apis/
I'm pretty sure that one of the following APIs will make your life easier: https://developers.google.com/api-client-library/dotnet/apis/plus/v1 or https://developers.google.com/api-client-library/dotnet/apis/oauth2/v2