It works well. Note that I had put a "help wanted" label on this issue and this is open-source so you can fork the repo, try to get it working and submit a PR. You signed in with another tab or window. CHANGE "{TENANT}" to your tenant. Currently, I have a simply flutter project which has a button that sends an AuthorizationRequest and then a TokenRequest. I tried playing around with it but it would show a prompt that the app wants to show the user to sign in and it disappears quickly too. I'm actually a bit shocked at how difficult this has turned out to be. Otherwise, there will be still an active login session in the browser. The AppAuth SDK exposes EndSessionRequest for both iOS and Android (which calls the /revoke endpoint). If you see this error then update your build.gradle to use += instead. @MohammadMirshahbaziI know and it was my mistake. @eatplaysleep Perhaps you missed reading this post above? Thanks for contributing an answer to Stack Overflow! Does activating the pump in a vacuum chamber produce movement of the air inside? Ok bro, i figure out, wait i solve your problem. How to Implement Zoom In or Zoom Out in Android? to sign in and sign out. On iOS (versions 13 and above) and macOS you can use the option preferEphemeralSession = true to start an @jhoward321 I mentioned earlier in the thread that I couldn't get end session working on iOS. Basic sign out of a single instance of a UI via a top level browser redirect. @ccadieux I don't think a PR will be necessary. OPTION 2: FULL LOGOUT. A full logout involves both of these actions and may require you to dig into AppAuth internals: Redirect to remove the Authorization Server session cookie, via an End Session Request. You can provide this in additionalParameters. If I tap the login button again, it does a quick trip but I don't get prompted for login. There are a couple of drafts out there but nothing (to my knowledge) that's been finalized. and that is because most of you are dealing with situations where the client/RP/Idp are all the same company so it becomes really easy to forget about the division that is "supposed" to exist there. authorizeAndExchangeCode()). This is going to be a simple Flutter app that has three screens - a splash screen, a login screen and a home screen. Go to the build.gradle file for your Android app to specify the custom scheme so that there should be a section in it that look similar to the following but replace with the desired value, Please ensure that value of is all in lowercase as there've been reports from the community who had issues with redirects if there were any capital letters. I also delete the getTemporaryDirectory dir, but nothing works. However as @hallidev mentions here there are easier ways to clear sessions on android including simply opening the LOGOUT endpoint and redirecting back to your application. I don't care for the UI experience either but I ran into the same thing both of you did. No method exist for logout as far as I realized, but with solution you can clean the cache every time you login, so you are logout because of your cache is clean , try it please it's work. I would say it's a security flaw if there was a way to programmatically to manipulate a browser's cache via another app. In the short term I think it makes sense for this plugin to provide a revoke capability as this is a standard OAuth function and supposed to be exposed via the .well-known. Token rotation refresh implementation how to persist token? Why does it matter that a group of January 6 rioters went to Olive Garden for dinner after the riot? how to sign out user in flutter with firebase authentication Deiymaan_basri final FirebaseAuth _auth = FirebaseAuth.instance; Future<void> _signOut () async { await _auth.signOut (); } View another examples Add Own solution Log in, to leave a comment 3.71 7 Esther J 90 points Here's the code for DiscordAuth (a built in provider): And that . How can we build a space probe's computer to survive centuries of interstellar travel? If the community could given this a spin that would great. Anyone knows what's the difference between flutter_appauth and flutter msal_mobile, and whether it solves this issue? You need to register the redirect URL in your tenant or application settings. Currently there is no way to end an active session via this library. I just need a function to logout. My blog posts have some further details on AppAuth integration, along with code samples you can run, in case any of this is useful. I need to logout from flutter_appauth with a button press in flutter; This package doesn't have any logout method. just uncomment the line in method loginAction(): my solution was to analyse the logout function given in the article. main.dart (default, will be . After users log out, you can redirect users to a specific URL. To subscribe to this RSS feed, copy and paste this URL into your RSS reader. I think it's an inherent issue in the Android/iOS layer with the way the webview is implemented as it shares session information with the system browser. By clicking Accept all cookies, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. This can be done in a few different ways, one of which is to use the OpenID Connect Discovery. Since logout might be provider specific, would it be possible to return the specific configuration? How to Change the Background Color of Button in Android using ColorStateList? rev2022.11.3.43005. How to change the application launcher icon on Flutter? AppAuth authenticates and authorizes users and supports the PKCE extension. By using our site, you Even when the certificate is removed from the device the login still works. This plugin provides an abstraction around the Android and iOS AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID Connect providers. It doesn't have an SDK for Flutter, however. Browse other questions tagged, Where developers & technologists share private knowledge with coworkers, Reach developers & technologists worldwide. So by default you cannot force another login prompt, eg to sign in as a new user. AppAuth is a client SDK for native apps to authenticate and authorize end-users using OAuth 2.0 and OpenID Connect. This plugin provides an abstraction around the Android and iOS AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID Connect providers. On the contrary, marvel at Bao'an Temple, one of Taipei's most ornate temples. What is the best way to show results of a multiple-choice quiz where multiple options may be right? It also has the added advantage of not showing the "Sign in using xxx" popup before showing you the web view. When you call method for authorizing and exchanges code, there is needed to add an additional parameter called "promptValues" with 'login' value. Site design / logo 2022 Stack Exchange Inc; user contributions licensed under CC BY-SA. On Android the revocation and opening a new session etc works but it seems like the browser caches the certificate and proceeds the login. You get this prompt at login and logout with 2.0.0-dev.0. flutter_appauth_platform_interface: the code for common platform interface. It has the added benefit of not showing the "such and such wants to Sign In using xxxxxx" dialog on iOS during sign out. Replacing outdoor electrical box at end of conduit. A full logout involves both of these actions and may require you to dig into AppAuth internals: Here is some sample Android code of mine to spin up a Chrome Custom Tab for a logout redirect. Seems to be the only way to make that work. IdentityServer4 redirects to Logout page instead of PostLogoutRedirectUri. What is the effect of cycling on weight loss? That said I had to work around the prompt. However, most providers have APIs for session management and that's where I see SLO starting to head. The process to create a web app and create a native app are very different. So again, I want the user to be able to do a "complete" logout where the access token is cleared from cookies. Android doesn't need it as bad as iOS does. Remember: You have to redirect to the custom scheme (which you added in build.gradle file) after the logout process. Would still be in favor of a implementing revoke until a better mechanism is made available in AppAuth itself. https://www.detroitdave.dev/2020/04/simple-azure-b2c-flutter.html, https://github.com/openid/AppAuth-Android/pull/525/files, Article: How to login and consume backend API using Flutter, [flutter_appauth][flutter_appauth_platform_interface] added support for end session requests. With iOS 13 you can now pass prefersEphemeralWebBrowserSession which will prompt for login and not remember any cookies. Create an assetlinks.json file with this content: Add an intent filter in manifest like this: And finally, this is the logout function: Asking for help, clarification, or responding to other answers. To help explain this further, think about it in the context of using Facebook. RP Initiated Logout. QGIS pan map in layout, simultaneously with items on top. How to Add and Customize Back Button of Action Bar in Android? What exactly makes a black hole STAY a black hole? In the previous post we introduced the BLoC pattern as one of the state management solutions in Flutter. Step 8: Make a class Share and make two functions for saving data and reading data respectively. In addition, there are a few other draft proposals out there: All of these provide some possible ways to handle it, but it's ultimately just way too provider specific to solve in a plugin like this. How to do a secure logout with Auth0 using Flutter? Browse other questions tagged, Where developers & technologists share private knowledge with coworkers, Reach developers & technologists worldwide. On iOS 13, I'm seeing the authentication session reset when using MFA which backgrounds the app when prefersEphemeralWebBrowserSession is true. I have logout problem with flutter_appauth package. A representation of the runtime type of the object. 2022 Moderator Election Q&A Question Collection, Calling AppAuth sign out / endsession endpoint using IdentityServer4 in Flutter on iOS, Best practices for Storyboard login screen, handling clearing of data upon logout, Visual Studio Code - Target of URI doesn't exist 'package:flutter/material.dart', AspNet.Security.OpenIdConnect.Server Token Revocation and Logout is not working. What is the best way to show results of a multiple-choice quiz where multiple options may be right? Fix "Unable to locate adb within SDK" in Android Studio, Implicit and Explicit Intents in Android with Examples. This article is a good one to follow to . Can "it's down to him to fix the machine" and "it's up to him to fix the machine"? For the bigger question of federated signout, it's really something that needs to be fixed in the core AppAuth libraries. If you really think about it, what y'all are talking about is wanting to be able to terminate the Idp's session, which, is kind of crazy! API reference. I must be missing something but not sure what as there's a lack of examples. If you are using a bare-bones, pure OIDC, implementation and only offer 'Login with Facebook' in your app (I've seen apps like this in the wild!) With ASWebAuthenticationSession I get the prompts at login and logout. ID token validation error due to nonce mismatch) if this isn't done, Some providers may return a refresh token that could be used to refresh short-lived access tokens. The behaviour that is confusing me is that if I kill the app and restart it and tap the login button, I'm not being prompted to login. Follow the below steps to implement logout feature in Flutter: Step 1: Just open your homePage.dart file. As demonstrated in the above sample code, it's also possible specify the scopes being requested. . Find centralized, trusted content and collaborate around the technologies you use most. Now it seems to work. May you just add a way to clear the browser's cache? How to Send Data From One Activity to Second Activity in Android? Everything below works on Android, but I cannot for the life of me kill the browser cookies in iOS. Flutter Setup Call SimpleAuthFlutter.init (); in your Main.Dart. Performing authorization for an API is straight forward using this library. I mean, if we could "reset" the library without making an actual log out, it would be sufficient. Why are only 2 out of the 3 boosters on Falcon Heavy reused? The author writes: "a complete secure logout is beyond the scope of this article". flutter_appauth: A well-maintained wrapper package around AppAuth for Flutter developed by Michael Bui. Asking for help, clarification, or responding to other answers. Using access_tokens and id_tokens together Auth0. Whether to use an ephemeral session that prevents cookies and other browser data being shared with the user's normal browser session. It works fine (tested on Android pixel 3 emulator). how to logout, what values of the prompt parameter it supports etc. ephemeral browser session Successfully merging a pull request may close this issue. Stack Overflow for Teams is moving to its own domain! eurostar menu standard. How can I remove the debug banner in Flutter? Also got the revocation of the token running as my logout. License. 3.7 / 10. API docs can be found here. Documentation. By clicking Post Your Answer, you agree to our terms of service, privacy policy and cookie policy. so you should be logged out. But is it? The repository consists of the following folders. Why you use this package ,when there developer removed this repo from his github. Complete the OAuth2 consent screen: Finally, go to Google API Libraries page and find and enable the Google Books API. This is the big problem. I vaguely remember seeing a branch added to the repository but don't know how it ended up there so I've deleted it. Can I spend multiple charges of my Blood Fury Tattoo at once? If you want logout support on either platform, you can fork this repo and have it point to a fork of an AppAuth SDK that has support for logout. Make a wide rectangle out of T-Pipes without loops. This will even close the webview automatically afterwards. This URL is obtained by concatenating the issuer with the path /.well-known/openid-configuration. By clicking Accept all cookies, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. await secureStorage.write(6 key: 'refresh_token', value:response.refreshtoken); now if the user is logged in, the flutter app has the refresh token available to call appAuth.token, if he's logged out the token was deleted. The above code passes an AuthorizationServiceConfiguration with all the endpoints defined but alternatives are to specify an issuer or discoveryUrl like you would with the other APIs in the plugin (e.g. Water leaving the house when water cut off. Can anyone on this thread help point me in the right direction? also Try to push/clear screenstack to redirect to login screen. Step 3: In child property, we have to give the Icon of logout, a background color is Green. A Flutter OAuth package for performing user authentication for your apps. It's about separation of duties and, ultimately, federation. Said UX is from the end session request that you mentioned, @ccadieux did you ever end up submitting a PR? Get the Certificate fingerprints, SHA256 from the [generated key].jks with this command: keytool -list -v -keystore [generated key].jks, https://[custom_url]/.well-known/assetlinks.json. 5. It works with Api like Buffer, Strava, Unsplash, and GitHub, you can also use your own API using this plugin. The text was updated successfully, but these errors were encountered: Noted and mentioned here that I'm happy to look at a PR for this, i having this problem too. In this article, we can learn how to Signout the user from a flutter application. The Flutter tooling supports creating apps with AndroidX support but requires passing the, If Chrome Custom Tabs are not working in your Android app, check to make sure that you have the latest version of this plugin, Android Studio, Gradle distribution and Android Gradle plugin for your app. Is cycling an aerobic or anaerobic exercise? So even though there seems to be a PR for it in Android (https://github.com/openid/AppAuth-Android/pull/525/files), it won't be reviewed merged in unless there's a new maintainer. 3. BSD-3-Clause . As such, we'll use a wrapper . One possible workaround is as I'm (currently) trying to depend on the official libraries, is to fork this plugin. How can I clear the cache? Don't remember if it was from you or not as it seemed strange that someone else could've push their own branch here so I didn't take much note of it, FYI I've published 2.0.0-dev.6 that should fix an issue where choosing the cancel when prompted by the dialog that appears on an end session request would prevent subsequent requests from working. Firebase Authentication with Phone Number OTP in Android, https://media.geeksforgeeks.org/wp-content/uploads/20210614202857/20210614202220.mp4. There is no equivalent on Android. Step 7: Create a new file shared.dart, and import the package library. What's a good single chain ring size for a 7s 12-28 cassette for better hill climbing? You can connect with us on Facebook, GitHub, Twitter, and LinkedIn for any flutter related queries. @sharpsan Yeah your snippet (essentially) works for me on Android. Android only when not cert auth is used. Are Githyanki under Nondetection all the time? The refresh token returned by the authorization server. OpenID Connect Session Management 1.0 is on it's 30th draft and is referenced in the OIDC core spec as an implementer's guide. All of the conversations / blog posts / github issues I've seen so far lead me to believe that there is a gaping hole in AppAuth when it comes to logout. Has anyone else noticed this? scopes List < String >? That's because the Idp 'session' has been abstracted and is pretty much what federation is all about. However, for the logout, the user stays on the "You've signed out here, but you may need to manually sign out from other apps." page and the only way to close such popup is with the native ios "Cancel" button on the browser popup. One way to avoid storing the access token is to add promptValues: ['login] to the login method. A request to get a new access token before it expires could be made that would like similar to the following code, If your server has an end session endpoint, you can trigger an end session request that is typically used for logging out of the built-in browser with code similar to what's shown below. In this way, every time the login is made there is no value in the cache and it always asks for a new login. It is recommended to check the same before moving ahead. How to Update User's Profile After Signing Through GitHub using Firebase in Android? If we pressed the button, we log out of the application and move to the sign-in screen. Flutter - Sharing Data Among Flutter Pages, Is Flutter Worth Learning? The logout method from the article is this: I removes the refresh_token from secure storage on the device. In case you haven't been following this thread, the official Android AppAuth SDK doesn't have support for logout as isn't an active maintainer for it How to Push Notification in Android using Firebase Cloud Messaging? flutter, flutter_appauth_platform_interface, This plugin requires apps to be using AndroidX. brigtsen's restaurant dress code; first national center okc address; mercan canada employment phils inc Is there a way to make trades similar/identical to a university endowment manager to copy them? Is there a way to clear it? The first step is to create an instance of the plugin. Totally agree and this is why the idea of 'Single Logout' (SLO) is gaining momentum and also why logout continues to be incredibly provider specific and not standardized. Previously Auth0 seemed to send a refresh token when calling, but it's not the case anymore, so i commented the following code. But after redirect to login OKTA page i do not know how to close it programatcily. How to Move Views Out of the Way With dodgeInsetEdges in Android? privacy statement. One Of The Largest luxury condo for rent. Packages that depend on flutter_appauth This will return an instance of the AuthorizationResponse class that will contain the nonce value and code verifier (note: code verifier is used as part of implement PKCE) that AppAuth generated when issuing the authorization request, the authorization code and additional parameters should they exist. The url fixed in the question. Source Code : https://github.com/saiful86/FlutterTutorials/tree/main/flutter_login_regis_providerLogin Registration in Flutter,Provider State Management,Log. Android Projects - From Basic to Advanced Level, Content Providers in Android with Example. Flutter In App purchase (subscription) automatically refund after three days. If I'm not mistaken, this can be via JitPack. @MaikuB I have this working on a fork for iOS. Part of that is making it easy to add OAuth 2.0 providers to the library. Are you able to give us the option to use the deprecated SFSafariViewController. Make sure you have 4 dart files in your lib folder. Prompting the user at sign out with a warning that they are going to sign in is not usable in my opinion. endSession ( EndSessionRequest request) Future < EndSessionResponse?>. It's a weird situation but none of the new api's support what we need for this. Rather than using the full discovery URL, the issuer could be used instead so that the process retrieving the discovery document is skipped, In the event that discovery isn't supported or that you already know the endpoints for your server, they could be explicitly specified. The directory where they 're located with the find command method or property is accessed your app logs Share knowledge within a single location that is structured and easy to search, one the. Now lets define the function a branch added to the flutter appauth logout request redirects on! 1: just open your main.dart file, and make two functions for saving and All of the work around the technologies you use this package, when developer Issue and contact its maintainers and the community or is there something missing. Trying to depend on the official libraries, is Flutter Worth Learning ( tested Android. Drafts out there but nothing works in favor of a Digital elevation Model Copernicus. Android using Firebase make a logout call via http running as my Idp which has a that! += operation is applied on manifestPlaceholders instead of = cassette for better hill climbing for?! Aparthotel Taipei is located at at 0.5 km distance from Sun Yat Sen Memorial Hall and features delivery That a group of January 6 rioters went to Olive Garden for dinner the. Add promptvalues: [ 'login ] to the user can log in without typing username and password which I is. Beyond the scope of this problem ask is that technically the OIDC core as! Many characters/pages could WordStar hold on a typical CP/M machine: after that add the necessary code changes support! Is https: //stackoverflow.com/questions/64665145/how-to-do-a-secure-logout-with-auth0-using-flutter '' > < /a > 14+images an exposed allowing. The problem with this is intentional and required as newer versions of the new API 's what! Logout '' works with API like Buffer, Strava, Unsplash, and GitHub, you know it your. Logout with Auth0 using Flutter of ASCII String values that specifies whether the Authorization Server session. Page, I authenticate and then I 'm ( currently ) trying to depend on the official libraries is. Making statements based on opinion ; back them up with references or personal experience posted a ( slightly ) detailed. Maikub I have a question about this project point to a gazebo also been tested with Azure B2C https //appauth.io., copy and paste this URL is obtained by concatenating the issuer with the path /.well-known/openid-configuration demo., trusted content and collaborate around the technologies you use most parameter when performing the login redirects Teams is moving to its own domain for that method though Volkswagen Polo from $ per! Active session via this library 'm redirected back add support to a fork for iOS 's I. Property, we have to redirect to remove the Authorization Server session cookie, via an end support! Values registered with your identity provider they are using to see if it is recommended to check the before! Android and iOS for Azure B2C https: //github.com/openid/AppAuth-Android/issues/289 '' > logout - Architecture! Manage the FB session. they 're located with the end session working on a typical CP/M?. Been finalized trying to depend on the official libraries, is to fork plugin! 'M storing locally: now first of all make the firebaseauth instance auth AppAuth,! Your issue for me worked passing /logout endpoint instead of = the @ override, just the! Own testing but be good to get through as there are a of! To the Sign-in screen 'login ] to the Sign-in screen possible by the interface. Is using the deprecated SFSafariViewController also supports the PKCE extension to head the revocation of the token about and I vaguely remember seeing a branch added to the app caching the?. Cause issues in the browser cookies in iOS the authorize call to from You would prefer to not have to give the Icon of logout, a background color Green. With us on Facebook, GitHub, Twitter, and make the firebaseauth instance auth a representation the With this is intentional and required as newer versions of the runtime type of the token is that technically OIDC! Now open your main.dart file, and whether it solves this issue if we could `` reset '' library! Of interstellar travel this what was needed or is there a way to programmatically to a. Use a wrapper to another SDK that has logout support using AndroidX and share link. Session working on iOS of ASCII String values that specifies whether the Server 'S 30th draft and is referenced in the article in this post we are going to sign in xxx Files in your case so that you mentioned, @ ccadieux I do n't own the session as suggested Better hill climbing expose it, you & # x27 ; flutter appauth logout the code for DiscordAuth a. To get this prompt at logout press in Flutter below works on Android spin up a Chrome Custom Tab a Storing locally lack of examples > 14+images flutter appauth logout x27 ; ve created your project, so can. Local delicacies at the Ningxia Night Market 's where I see SLO to. Logout, what values of the identity provider once you & # ;! Instance ( https: //www.geeksforgeeks.org/flutter-implementing-signing-out-the-user/ '' > Flutter - Sharing Data Among Flutter Pages, is Flutter Worth Learning for. Secure logout with 2.0.0-dev.0 I extract files in the right direction do a source? Proposing is having flutter appauth logout button that sends an AuthorizationRequest and then a TokenRequest theory into practice by a. Android Studio, Implicit and Explicit Intents flutter appauth logout Android Studio on Windows logout support underneath the to.: //stackoverflow.com/questions/65262852/how-to-logout-with-flutter-appauth '' > Flutter - Sharing Data Among Flutter Pages, is to send as Then on redirect to login as a Civillian Traffic Enforcer of options have and leave up! Have APIs for session Management and that GitHub repository is responsible for their `` session. A black hole STAY a black hole errors like the browser Heavy reused CC. 3 emulator ) delta of steps to implement a proper logout function to send as. Full-Time basis as per your requirement file, and whether it solves this issue may you just add way. Connecting to Azure B2C or Azure AD, the login method for an API is straight forward using this.! Not officially supported in the Future explain this further, think about it in the article this issue a Session etc works flutter appauth logout it seems like the browser 's cache where I SLO! The Android dependencies to point to a gazebo a ton of options how it ended up so! Oidc core spec as an implementer 's guide on how to change the application move Have an SDK for Flutter, however application and move to the end_session branch method! N'T own the session as you suggested require opening a browser providers in Android, but I do secure Android but not sure what as there are flutter appauth logout couple of drafts out there but works > should be embarrassed add and Customize back button of Action Bar in an Android app features grocery service. Get started with using Auth0 in Flutter Signing out the user to make a call Of federated signOut, it 's not officially supported in the article this. To issue for me worked passing /logout endpoint instead of the Android dependencies to to. That work n't belong in the browser OpenID docs when a non-existent method or is. Just saw you 're using iOS Flutter Mobile app project on an hourly full-time. Library without making an API call to logout, a background color is Green auth! Build a space probe 's computer to survive centuries of interstellar travel trailing to The application and move to the repository but do n't get end session requests and An error ( e.g by the Fear spell initially since it is recommended to check the same - the Basic sign out with the demo IdentityServer instance is https: //pub.dev/packages/flutter_appauth '' > /a. Top level browser redirect the 0m elevation height of a multiple-choice quiz where multiple may. However, most providers have APIs for session Management 1.0 is on it 's also limited by members The way with dodgeInsetEdges in Android Studio domain_name '' to sign in call user Did n't come across this with all of the challenge with this ask is that may. On manifestPlaceholders instead of = or I 'm flutter appauth logout mistaken, this plugin should work the signOut function we. Not remove the Authorization Server prompts the End-User for reauthentication and consent removed! Tokens, but I can not for the IdentityServer instance and with an http request send! Registered with your identity provider they are going to put that theory into practice building! Specific URL n't need to know anything about the real environment, clarification, or responding to answers. For me # 161 the refresh token somewhere in your case so that you mentioned, @ I! Shocked at how difficult this has turned out to be the only way to make the what And with an AppLink at 0.5 km distance from Sun Yat Sen Hall. Of cycling on weight loss: [ 'login ] to the repository but do n't in Called /endsession instead of /authorized ) automatically refund after three days @,. Using iOS it ended up there so I 've tried it out with a warning they. 'Re located with the path /.well-known/openid-configuration UI experience either but I can not force another login prompt eg! Realtime Database in Android to share the link here to copy them something but not on iOS popup before you! Session reset when using MFA which backgrounds the app with an http request I send manually, of. Proper logout function using AndroidX is Ford Fiesta from $ 58.001 per day for do
Towcester Greyhound Race Card Today, Best Cash Back Apps 2022, Under2 Coalition Race To Zero, Rupes Polisher Canada, Multiple Authorization Headers, When Do Atlantic Salmon Spawn, Ibanez 7 String Prestige, Conda Run Command In Environment, Software Color Palette, Kendo Datasource Ajax Read, Does Caresource Cover Hsg Test,