Ionic 3 + Facebook checkin

Hi,
I’m trying to do a checkin in Facebook but I can’t find any plugin capable of doing it. Tried Social Share and Facebook plugins. I can login, send messages, share links but no checkins. This code works fine with native facebook but I think it’s not possible to add places to the post. How can I acomplish that in Ionic 3? Any suggestions?

    let permissions = new Array<string>();
    this.facebook.login(['public_profile', 'user_friends', 'email']).then((response: FacebookLoginResponse) => {
      var options = {
        method: 'share',
        href: 'http://example.com',
        caption: 'Such caption, very feed.',
        description: 'Much description',
        picture: 'http://example.com/image.png'
      }

      this.facebook.showDialog(options).then(data => alert(JSON.stringify(data)))
        .catch(err => alert(JSON.stringify(err)));
    });