IGPAPI
    Preparing search index...

    Variable AndroidPostLoginFlowConst

    AndroidPostLoginFlow: (
        opts?: PostLoginFlowOptions,
    ) => Effect<
        void,
        | IgApiError
        | RequestError
        | ParseError
        | TransportError
        | UserIdNotFoundInState,
        | PlainJsonApiHttp
        | Signature
        | MobileSession
        | MobileDevice
        | GraphqlJsonHttp
        | MobileApplication
        | Transport,
    > = PostLoginFlow

    Android post-login flow: currently same as common flow. Android-specific steps (pigeon, etc.) are already in the common PostLoginFlow. Add android-only steps here as needed.

    Type Declaration

      • (
            opts?: PostLoginFlowOptions,
        ): Effect<
            void,
            | IgApiError
            | RequestError
            | ParseError
            | TransportError
            | UserIdNotFoundInState,
            | PlainJsonApiHttp
            | Signature
            | MobileSession
            | MobileDevice
            | GraphqlJsonHttp
            | MobileApplication
            | Transport,
        >
      • Simulates the post-login flow.

        Sequential preamble: getAccountFamily -> reelsTray -> timeline Then all remaining requests run concurrently via Effect.all.

        Parameters

        • Optionalopts: PostLoginFlowOptions

        Returns Effect<
            void,
            | IgApiError
            | RequestError
            | ParseError
            | TransportError
            | UserIdNotFoundInState,
            | PlainJsonApiHttp
            | Signature
            | MobileSession
            | MobileDevice
            | GraphqlJsonHttp
            | MobileApplication
            | Transport,
        >