Authenticate.me-client-cordova-ionic icon indicating copy to clipboard operation
Authenticate.me-client-cordova-ionic copied to clipboard

Ionic 1.0.0

Open gusreyes01 opened this issue 10 years ago • 6 comments

Are there any plans to make this app compatible with Ionic 1.0.0 Uranium Unicorn?

gusreyes01 avatar May 23 '15 18:05 gusreyes01

I'd love to do it and have been thinking about doing so for a while. However I lack the time to do it.

malikov avatar May 24 '15 03:05 malikov

I'm just getting started with Ionic and your app has been really useful to handle authentication with Oauth, however I've seen some issues when upgrading the Ionic version that I cannot yet resolve. Let me know if you need any help.

gusreyes01 avatar May 24 '15 17:05 gusreyes01

@gusreyes01 guess what I'll give the update to 1.0.0 a shot this week end. This should be fun. I'll update the repo once I've done so.

malikov avatar May 29 '15 04:05 malikov

That's great news! I'll be aware of any updates.

I can give you a heads up on what I've found not to be working so far.

  • IonicPopups ( Guess you have to rebuild the scsss using "gulp sass" )
  • httpProvider has to be updated: (http://stackoverflow.com/questions/23804981/alternative-of-httpprovider-responseinterceptors)

gusreyes01 avatar May 29 '15 14:05 gusreyes01

Hey @gusreyes01, yes indeed you have to change line 76 in /services/interceptors/http-auth-interceptor.js from

     $httpProvider.responseInterceptors.push(interceptor);

to

   $httpProvider.interceptors.push(interceptor);

since responeInterceptors was discontinued in 1.3 and up. I've done that in one of my other projects and it seems to work. Haven't had much time to finish working on this but I'll resume updating to 1.0.0 next week end. Thank you for your patience.

malikov avatar Jun 01 '15 03:06 malikov

Yeah that works so far. Thank you for your support.

gusreyes01 avatar Jun 01 '15 15:06 gusreyes01