0

Currently we have custom java application which is connected to salesforce CRM via canvas integration. Now we need to integrate with MS dynamics CRM.

Could you please tell me high level steps? how authentication will happen when control come from dynamics to custom application? Is there any canvas integration / iframe like thing in ms dynamics?

user1037452
  • 411
  • 1
  • 7
  • 15

1 Answers1

0

The best thing for a non .Net Application is to use the Dynamics 365 WebApi

It supports all common types of CRM Instances (On-Premise, Online) and authentication Methods:

  • OAuth (2)
  • Office365
  • AD
  • etc...

You can than look for existing projects on the web. (Like this guide for example)

Luca
  • 1,766
  • 3
  • 27
  • 38
  • We have one custom java application which is accessible over internet. We want to access this from dynamics as iframe by passing username and some other parameters to that url. so how can we do it? – user1037452 Aug 09 '17 at 12:26