Giter VIP home page Giter VIP logo

Comments (9)

 avatar commented on July 21, 2024

If I understood your question correct, you want to register new phone number by Airgram?

Registration is implemented by the same API method as authentication. So you can do it now, but you have to provide firstName and lastName:

import { Airgram, Auth } from 'airgram'

const airgram = new Airgram()
const auth = new Auth(airgram)

auth.use({
  // ...
  firstName: 'John',
  lastName: 'Smith'
})

P.S.: Telegram may decline registration from your application and return an error PHONE_NUMBER_APP_SIGNUP_FORBIDDEN. This error is not related to Airgram.

from airgram.

ktjd123 avatar ktjd123 commented on July 21, 2024

Cool, this is what I was curious about. is there method to get code by call??

like official telegram app calls after 2 mins.

@airgram

from airgram.

 avatar commented on July 21, 2024

Please check out the resendAuthenticationCode API method.

from airgram.

ktjd123 avatar ktjd123 commented on July 21, 2024

Can I ask if how I can mix Auth and api method together 😭

I tried the code

  await auth.use({
    code: async () => {
      await airgram.api.resendAuthenticationCode();
      prompt('Please enter code');
    },
    phoneNumber,
    firstName: 'some',
    lastName: 'name',
  });

and I think it's not how it works.

I always appreciate your work

@airgram

from airgram.

 avatar commented on July 21, 2024

If you want to catch updates of the authorization state, you should add your middleware above Auth initialization:

import { Airgram, Auth } from 'airgram'
import { AUTHORIZATION_STATE, UPDATE } from 'airgram-api'

const airgram = new Airgram({
  // ...
})

let timer
airgram.on(UPDATE.updateAuthorizationState, ({ update }, next) => {
  const { authorizationState } = update
  if (authorizationState === AUTHORIZATION_STATE.authorizationStateWaitCode) {
    timer = setTimeout(() => airgram.api.resendAuthenticationCode(), 120 * 1000)
  } else {
    clearTimeout(timer)
  }
  return next()
})

const auth = new Auth(airgram)
auth.use({ /* ... */ })

This example will work since the next release. At the time, method resendAuthenticationCode is blocked by Auth middleware.

from airgram.

ktjd123 avatar ktjd123 commented on July 21, 2024

Thank you !

Can I know when will the next release will be released ??

@airgram

from airgram.

 avatar commented on July 21, 2024

I guess it will be tomorrow or the day after tomorrow.

from airgram.

ktjd123 avatar ktjd123 commented on July 21, 2024

Thank you :)

from airgram.

ktjd123 avatar ktjd123 commented on July 21, 2024

If you want to catch updates of the authorization state, you should add your middleware above Auth initialization:

import { Airgram, Auth } from 'airgram'
import { AUTHORIZATION_STATE, UPDATE } from 'airgram-api'

const airgram = new Airgram({
  // ...
})

let timer
airgram.on(UPDATE.updateAuthorizationState, ({ update }, next) => {
  const { authorizationState } = update
  if (authorizationState === AUTHORIZATION_STATE.authorizationStateWaitCode) {
    timer = setTimeout(() => airgram.api.resendAuthenticationCode(), 120 * 1000)
  } else {
    clearTimeout(timer)
  }
  return next()
})

const auth = new Auth(airgram)
auth.use({ /* ... */ })

This example will work since the next release. At the time, method resendAuthenticationCode is blocked by Auth middleware.

Should use if (authorizationState._ === AUTHORIZATION_STATE.authorizationStateWaitCode) instead of if (authorizationState === AUTHORIZATION_STATE.authorizationStateWaitCode)

from airgram.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.