Code Monkey home page Code Monkey logo

Comments (2)

mukel avatar mukel commented on May 21, 2024 1

Sorry for the late reponse, I just added SOCKS support to the ScalajHttpClient, there's a big update coming soon, check the refactor branch.

A proxied bot (via long polling) would look like this:

import java.net.{InetSocketAddress, Proxy}

import info.mukel.telegrambot4s.api.Polling
import info.mukel.telegrambot4s.api.declarative.Commands
import info.mukel.telegrambot4s.clients.ScalajHttpClient

/**
  * Tunnel the bot through a SOCKS proxy.
  *
  * To test locally via [[https://linux.die.net/man/8/sshd sshd]] use:
  *   ssh -D 1337 -C -N you_user_name@localhost
  */
class ProxyBot(token: String) extends ExampleBot(token)
  with Polling
  with Commands {

  val proxy = new Proxy(Proxy.Type.SOCKS, InetSocketAddress.createUnresolved("localhost", 1337))
  override val client = new ScalajHttpClient(token, proxy)

  onCommand('hello) { implicit msg =>
    reply("Hi " + msg.from.fold("Mr. X")(_.firstName))
  }
}

See instructions below on how to get the latest build (with proxy support).

from telegram.

mukel avatar mukel commented on May 21, 2024 1

To pull 3.1.0-RC1 please add to your build.sbt

resolvers += Resolver.sonatypeRepo("staging")

// Core with Scalaj-Http backend: TelegramBot + Polling; it just works out-of-the box.
libraryDependencies ++= Seq("info.mukel" %% "telegrambot4s-core" % "3.1.0-RC1")

// Extensions with AkkHttp backend: AkkaTelegramBot + Webhooks + Game support
libraryDependencies ++= Seq("info.mukel" %% "telegrambot4s-akka" % "3.1.0-RC1")

Example bot + runner:

import info.mukel.telegrambot4s.api.{Polling, TelegramBot}
import info.mukel.telegrambot4s.api.declarative.Commands

import scala.concurrent.Await
import scala.concurrent.duration.Duration

class Botogram extends TelegramBot with Polling with Commands {
  override def token: String = "TOKEN"
  onCommand('hello) { implicit msg =>
    reply("Botogram")
  }
}

object Main {
  def main(args: Array[String]): Unit = {
    val bot = new Botogram()
    val eol = bot.run()
    scala.io.StdIn.readLine()
    bot.shutdown()
    Await.result(eol, Duration.Inf)
  }
}

Please report any issues.

from telegram.

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.