OfficeDev / Word-Add-in-AngularJS-Client-OAuth

[ARCHIVED] Word add-in demonstrating client-side OAuth using Angular JS and ADAL for Angular
Other
8 stars 6 forks source link

Can't Test in Office Online #2

Closed sambraley closed 8 years ago

sambraley commented 8 years ago

Tried testing this sample using Word Online by uploading the manifest, but in the task pane it just says "Add-in Error: This add-in is not supported in this version of Office." It doesn't seem to have any details about why it's not supported, but I figured I would let y'all know in case it should be working in Word Online.

dougperkes commented 8 years ago

Thanks for the feedback @samuelbraley. At this point Office Online does not yet support the dialog API which is demonstrated in this sample. The reason you see that error is because the following is included in the manifest file, which prevents the add-in from running if the DialogAPI is missing:

  <Requirements> 
   <Sets DefaultMinVersion="1.1"> 
     <Set Name="DialogAPI"/> 
   </Sets> 
 </Requirements> 

More details on the dialog API and supported platforms can be found here.